diff options
author | Ross Burton <ross.burton@intel.com> | 2013-10-28 17:52:31 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-29 10:33:11 +0000 |
commit | 2544dc51fdebed77ff6eddf27d0ee897c5f5c257 (patch) | |
tree | f4814562c201aa281ac0ad80dfc54368859154d5 | |
parent | ce04ba6a5385ad2d021d472cf9236787c6ea7357 (diff) | |
download | openembedded-core-2544dc51fdebed77ff6eddf27d0ee897c5f5c257.tar.gz openembedded-core-2544dc51fdebed77ff6eddf27d0ee897c5f5c257.tar.bz2 openembedded-core-2544dc51fdebed77ff6eddf27d0ee897c5f5c257.zip |
xorg-proto-common: set UNKNOWN_CONFIGURE_WHITELIST
This include adds configure options globally but not all X libraries support
them, so to avoid unknown-configure-option warnings add them to the whitelist.
Also change the options from --enable-foo=no to --disable-foo as they're clearer
and the whitelist would have to contain --enable-foo.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-graphics/xorg-proto/xorg-proto-common.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-graphics/xorg-proto/xorg-proto-common.inc b/meta/recipes-graphics/xorg-proto/xorg-proto-common.inc index 856f4d8f33..4680d0eeae 100644 --- a/meta/recipes-graphics/xorg-proto/xorg-proto-common.inc +++ b/meta/recipes-graphics/xorg-proto/xorg-proto-common.inc @@ -14,7 +14,9 @@ S = "${WORKDIR}/${XORG_PN}-${PV}" DEPENDS = "util-macros" inherit autotools pkgconfig -EXTRA_OECONF = "--with-fop=no --without-xmlto" +EXTRA_OECONF = "--without-fop --without-xmlto" + +UNKNOWN_CONFIGURE_WHITELIST += "--without-fop --without-xmlto" # ${PN} is empty so we need to tweak -dev and -dbg package dependencies RDEPENDS_${PN}-dev = "" |