diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-25 09:15:39 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-25 11:26:26 +0100 |
commit | fe6cabfb0c6f382ef6131e07437b90c2afbf5488 (patch) | |
tree | 4684005cb2d93867c2ba893d6d0ced8cfc139f33 /meta/recipes-core/libxml | |
parent | a6d6432b508451d0847336dc980bc0541396e310 (diff) | |
download | openembedded-core-fe6cabfb0c6f382ef6131e07437b90c2afbf5488.tar.gz openembedded-core-fe6cabfb0c6f382ef6131e07437b90c2afbf5488.tar.bz2 openembedded-core-fe6cabfb0c6f382ef6131e07437b90c2afbf5488.zip |
libxml2/libxslt: Don't depend on ansidecl.h header
We don't DEPEND on binutils for ansidecl.h so ensure we should never
use the header. This makes builds determinstic and means something like:
bitbake binutils
bitbake libxml2 -c configure
bitbake binutils -c clean
bitbake libxml2
doen't fail to build.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/libxml')
-rw-r--r-- | meta/recipes-core/libxml/libxml2.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-core/libxml/libxml2.inc b/meta/recipes-core/libxml/libxml2.inc index 2eecbd30e7..32d6e8cd31 100644 --- a/meta/recipes-core/libxml/libxml2.inc +++ b/meta/recipes-core/libxml/libxml2.inc @@ -18,6 +18,11 @@ SRC_URI = "ftp://xmlsoft.org/libxml2/libxml2-${PV}.tar.gz \ inherit autotools pkgconfig binconfig +# We don't DEPEND on binutils for ansidecl.h so ensure we don't use the header +do_configure_prepend () { + sed -i -e '/.*ansidecl.h.*/d' ${S}/configure.in +} + EXTRA_OECONF = "--without-python --without-debug --without-legacy --without-catalog --without-docbook --with-c14n" EXTRA_OECONF_virtclass-native = "--with-python=${STAGING_BINDIR}/python --without-legacy --with-catalog --without-docbook --with-c14n" EXTRA_OECONF_virtclass-nativesdk = "--with-python=${STAGING_BINDIR}/python --without-legacy --with-catalog --without-docbook --with-c14n" |