diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-04-29 14:04:43 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-01 12:38:42 +0100 |
commit | 3e03ca7e744a9c15eab2aa794a84add65806fabf (patch) | |
tree | c00a4fc78106534e38cef44735c0c95527042fb1 /meta | |
parent | 2fe44efc65075832a395927649c8412f719ce50c (diff) | |
download | poky-3e03ca7e744a9c15eab2aa794a84add65806fabf.tar.gz |
python3: manipulate all of the config*/Makefile files, not just config/Makefile
(From OE-Core rev: abf2258b4c0ce9ed831665231d0a27ee568f5392)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python3_3.5.1.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3_3.5.1.bb b/meta/recipes-devtools/python/python3_3.5.1.bb index 26d05c76b0..62e7b65083 100644 --- a/meta/recipes-devtools/python/python3_3.5.1.bb +++ b/meta/recipes-devtools/python/python3_3.5.1.bb | |||
@@ -164,6 +164,7 @@ do_install() { | |||
164 | rm -f ${D}/${bindir}/2to3 | 164 | rm -f ${D}/${bindir}/2to3 |
165 | 165 | ||
166 | install -m 0644 Makefile.sysroot ${D}/${libdir}/python${PYTHON_MAJMIN}/config/Makefile | 166 | install -m 0644 Makefile.sysroot ${D}/${libdir}/python${PYTHON_MAJMIN}/config/Makefile |
167 | install -m 0644 Makefile.sysroot ${D}/${libdir}/python${PYTHON_MAJMIN}/config-${PYTHON_MAJMIN}${PYTHON_ABI}/Makefile | ||
167 | 168 | ||
168 | if [ -e ${WORKDIR}/sitecustomize.py ]; then | 169 | if [ -e ${WORKDIR}/sitecustomize.py ]; then |
169 | install -m 0644 ${WORKDIR}/sitecustomize.py ${D}/${libdir}/python${PYTHON_MAJMIN} | 170 | install -m 0644 ${WORKDIR}/sitecustomize.py ${D}/${libdir}/python${PYTHON_MAJMIN} |
@@ -182,9 +183,11 @@ PACKAGE_PREPROCESS_FUNCS += "py_package_preprocess" | |||
182 | py_package_preprocess () { | 183 | py_package_preprocess () { |
183 | # copy back the old Makefile to fix target package | 184 | # copy back the old Makefile to fix target package |
184 | install -m 0644 ${B}/Makefile.orig ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/config/Makefile | 185 | 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-${PYTHON_MAJMIN}${PYTHON_ABI}/Makefile | ||
185 | # Remove references to buildmachine paths in target Makefile and _sysconfigdata | 187 | # Remove references to buildmachine paths in target Makefile and _sysconfigdata |
186 | sed -i -e 's:--sysroot=${STAGING_DIR_TARGET}::g' -e s:'--with-libtool-sysroot=${STAGING_DIR_TARGET}'::g \ | 188 | sed -i -e 's:--sysroot=${STAGING_DIR_TARGET}::g' -e s:'--with-libtool-sysroot=${STAGING_DIR_TARGET}'::g \ |
187 | ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/config/Makefile \ | 189 | ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/config/Makefile \ |
190 | ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/config-${PYTHON_MAJMIN}${PYTHON_ABI}/Makefile \ | ||
188 | ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata.py | 191 | ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata.py |
189 | } | 192 | } |
190 | 193 | ||