]> code.ossystems Code Review - openembedded-core.git/commitdiff
gnome: set UNKNOWN_CONFIGURE_WHITELIST
authorRoss Burton <ross.burton@intel.com>
Mon, 28 Oct 2013 17:53:00 +0000 (17:53 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 29 Oct 2013 10:33:17 +0000 (10:33 +0000)
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.

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/gnome.bbclass

index a19dd1703a52aa4afaca896dcdf8a8fe1fc10216..0de22dd6d2c97203e15c7f5e5904c6d71be0525b 100644 (file)
@@ -1,3 +1,5 @@
 inherit gnomebase gtk-icon-cache gconf mime
 
-EXTRA_OECONF += "--enable-introspection=no"
+EXTRA_OECONF += "--disable-introspection"
+
+UNKNOWN_CONFIGURE_WHITELIST += "--disable-introspection"