diff options
-rw-r--r-- | meta/recipes-devtools/python/python3_3.4.3.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-devtools/python/python3_3.4.3.bb b/meta/recipes-devtools/python/python3_3.4.3.bb index 6c2e21d6a9..f61d278d79 100644 --- a/meta/recipes-devtools/python/python3_3.4.3.bb +++ b/meta/recipes-devtools/python/python3_3.4.3.bb | |||
@@ -184,8 +184,10 @@ PACKAGE_PREPROCESS_FUNCS += "py_package_preprocess" | |||
184 | py_package_preprocess () { | 184 | py_package_preprocess () { |
185 | # copy back the old Makefile to fix target package | 185 | # copy back the old Makefile to fix target package |
186 | install -m 0644 ${B}/Makefile.orig ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/config/Makefile | 186 | install -m 0644 ${B}/Makefile.orig ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/config/Makefile |
187 | # Remove references to buildmachine paths in target Makefile | 187 | # Remove references to buildmachine paths in target Makefile and _sysconfigdata |
188 | sed -i -e 's:--sysroot=${STAGING_DIR_TARGET}::g' -e s:'--with-libtool-sysroot=${STAGING_DIR_TARGET}'::g ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/config/Makefile | 188 | sed -i -e 's:--sysroot=${STAGING_DIR_TARGET}::g' -e s:'--with-libtool-sysroot=${STAGING_DIR_TARGET}'::g \ |
189 | ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/config/Makefile \ | ||
190 | ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata.py | ||
189 | } | 191 | } |
190 | 192 | ||
191 | require python-${PYTHON_MAJMIN}-manifest.inc | 193 | require python-${PYTHON_MAJMIN}-manifest.inc |