From: Ross Burton Date: Mon, 28 Oct 2013 17:53:00 +0000 (+0000) Subject: gnome: set UNKNOWN_CONFIGURE_WHITELIST X-Git-Tag: 2015-4~4788 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a97600330d626eb0ca75178a9011f1a63c8a29f3;p=openembedded-core.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. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- 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 @@ inherit gnomebase gtk-icon-cache gconf mime -EXTRA_OECONF += "--enable-introspection=no" +EXTRA_OECONF += "--disable-introspection" + +UNKNOWN_CONFIGURE_WHITELIST += "--disable-introspection"