diff options
author | Slater, Joseph <joe.slater@windriver.com> | 2018-06-23 16:56:26 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-06-25 10:23:33 -0700 |
commit | 4517d1c695efd0b175f4e7242e1a7bb4361527d9 (patch) | |
tree | c87a975a576b7a9dee626db1fd94a9cf0e9f34eb /meta-gnome | |
parent | 872399c7512952dc8bd9fcc45c0d90322c54968f (diff) | |
download | meta-openembedded-4517d1c695efd0b175f4e7242e1a7bb4361527d9.tar.gz |
metacity: allow for warnings during compilation
Add a PACKAGECONFIG option which lets us permit warnings during
compilation until warnings from new compiler versions are
dealt with.
enable the packageconfig by default since we default to gcc8
which produces these warning
Signed-off-by: Joe Slater <joe.slater@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-gnome')
-rw-r--r-- | meta-gnome/recipes-gnome/metacity/metacity_3.28.0.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-gnome/recipes-gnome/metacity/metacity_3.28.0.bb b/meta-gnome/recipes-gnome/metacity/metacity_3.28.0.bb index ce97a803f1..189f6ec558 100644 --- a/meta-gnome/recipes-gnome/metacity/metacity_3.28.0.bb +++ b/meta-gnome/recipes-gnome/metacity/metacity_3.28.0.bb | |||
@@ -23,6 +23,11 @@ SRCREV = "c0d4b2fc0fcd6f2d3c37da935923f9e9ed5eb99f" | |||
23 | 23 | ||
24 | EXTRA_OECONF += "--disable-xinerama" | 24 | EXTRA_OECONF += "--disable-xinerama" |
25 | 25 | ||
26 | PACKAGECONFIG ?= "" | ||
27 | |||
28 | # enable as neccessary until new warnings are dealt with | ||
29 | PACKAGECONFIG[werror] = "--enable-Werror,--disable-Werror,," | ||
30 | |||
26 | do_configure_prepend() { | 31 | do_configure_prepend() { |
27 | cd ${S} | 32 | cd ${S} |
28 | aclocal --install || exit 1 | 33 | aclocal --install || exit 1 |