From: Ross Burton Date: Mon, 28 Oct 2013 17:53:00 +0000 (+0000) Subject: gnome: set UNKNOWN_CONFIGURE_WHITELIST X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ccc65f6ee50029bcac709527f5eec18229c7a98;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Richard Purdie --- diff --git a/meta/classes/gnome.bbclass b/meta/classes/gnome.bbclass index a19dd1703a5..0de22dd6d2c 100644 --- a/meta/classes/gnome.bbclass +++ b/meta/classes/gnome.bbclass @@ -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"