diff options
Diffstat (limited to 'recipes/libxml/libxml2-native.inc')
-rw-r--r-- | recipes/libxml/libxml2-native.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/recipes/libxml/libxml2-native.inc b/recipes/libxml/libxml2-native.inc index c8182de91a..3f67152ca1 100644 --- a/recipes/libxml/libxml2-native.inc +++ b/recipes/libxml/libxml2-native.inc @@ -5,10 +5,10 @@ FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/libxml2-${PV}" SRC_URI = "ftp://xmlsoft.org/libxml2/libxml2-${PV}.tar.gz" S = "${WORKDIR}/libxml2-${PV}" -inherit distutils-base autotools native pkgconfig +inherit autotools native pkgconfig distutils-native-base do_configure_prepend () { - EXTRA_OECONF = "\ + EXTRA_LIBXML2_OECONF="\ --with-python=${PYTHON_DIR} \ --without-debug \ --without-legacy \ @@ -18,6 +18,10 @@ do_configure_prepend () { " } +do_configure (){ + autotools_do_configure ${EXTRA_LIBXML2_OECONF} +} + do_stage () { oe_runmake install } |