diff options
author | Ross Burton <ross.burton@intel.com> | 2013-10-28 17:53:00 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-29 10:41:37 +0000 |
commit | 3ccc65f6ee50029bcac709527f5eec18229c7a98 (patch) | |
tree | 4c5bf9d53f88747ff31b8abc6a0a98d5aaa53998 | |
parent | 03ba78bef493fb7e64d9e7187fc20eebaa1153f8 (diff) | |
download | poky-3ccc65f6ee50029bcac709527f5eec18229c7a98.tar.gz |
gnome: set UNKNOWN_CONFIGURE_WHITELIST
This class disable introspection support using --enable-introspection=no but not
all GNOME modules support introspection.
This can cause unknown-configure-options QA warnings, so clarify the option by
using --disable-introspection and add it to the sanity test whitelist.
(From OE-Core rev: a97600330d626eb0ca75178a9011f1a63c8a29f3)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/gnome.bbclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/gnome.bbclass b/meta/classes/gnome.bbclass index a19dd1703a..0de22dd6d2 100644 --- a/meta/classes/gnome.bbclass +++ b/meta/classes/gnome.bbclass | |||
@@ -1,3 +1,5 @@ | |||
1 | inherit gnomebase gtk-icon-cache gconf mime | 1 | inherit gnomebase gtk-icon-cache gconf mime |
2 | 2 | ||
3 | EXTRA_OECONF += "--enable-introspection=no" | 3 | EXTRA_OECONF += "--disable-introspection" |
4 | |||
5 | UNKNOWN_CONFIGURE_WHITELIST += "--disable-introspection" | ||