mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
python-native: Point to expat in native sysroot and add missing dep on expat-native
This fixes inconsistency where expat dependency is then depending upon build host having it or not having it Fixes errors like WARNING: renaming "pyexpat" since importing it failed: build/lib.linux-x86_64-2.7/pyexpat.so: undefined symbol: XML_SetCommentHandler also reported here https://dev.openwrt.org/ticket/20087 This work due to the fact that we use -isystem pointing to native sysroot so the search order of native includedir is moved after buildhosts system includdirs. Moment we replace it with -I, build falls apart This also fixes the error Caught exception: <type 'exceptions.ImportError'> ImportError('No module named _elementtree',) where gobject-introspection-native fails to find _elementtree which is only compiled if expat is available (From OE-Core rev: a63798df712bf0d2362e07713c06af3b071a10b2) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
require python.inc
|
require python.inc
|
||||||
|
|
||||||
EXTRANATIVEPATH += "bzip2-native"
|
EXTRANATIVEPATH += "bzip2-native"
|
||||||
DEPENDS = "openssl-native bzip2-replacement-native zlib-native readline-native sqlite3-native"
|
DEPENDS = "openssl-native bzip2-replacement-native zlib-native readline-native sqlite3-native expat-native"
|
||||||
PR = "${INC_PR}.1"
|
PR = "${INC_PR}.1"
|
||||||
|
|
||||||
SRC_URI += "\
|
SRC_URI += "\
|
||||||
@@ -27,7 +27,7 @@ inherit native
|
|||||||
|
|
||||||
RPROVIDES += "python-distutils-native python-compression-native python-textutils-native python-codecs-native python-core-native python-unittest-native"
|
RPROVIDES += "python-distutils-native python-compression-native python-textutils-native python-codecs-native python-core-native python-unittest-native"
|
||||||
|
|
||||||
EXTRA_OECONF_append = " --bindir=${bindir}/${PN}"
|
EXTRA_OECONF_append = " --bindir=${bindir}/${PN} --with-system-expat=${STAGING_DIR_HOST}"
|
||||||
|
|
||||||
EXTRA_OEMAKE = '\
|
EXTRA_OEMAKE = '\
|
||||||
BUILD_SYS="" \
|
BUILD_SYS="" \
|
||||||
|
|||||||
Reference in New Issue
Block a user