mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 18:52:38 +02:00
Use PYTHON_SITEPACKAGES_DIR insted of hard-coded *site-packages*
For thoese recipes that are inheriting python*-dir.bbclass, there is
already a PYTHON_SITEPACKAGES_DIR present, use that definition replacing
redundant "${libdir}/python*/site-packages".
(From OE-Core rev: e7d842673952aa4aaa141f64958bc1344dbe8210)
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -18,16 +18,16 @@ S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit distutils3
|
||||
|
||||
DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${libdir}/${PYTHON_DIR}/site-packages"
|
||||
DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${PYTHON_SITEPACKAGES_DIR}"
|
||||
|
||||
do_install_prepend() {
|
||||
install -d ${D}/${libdir}/${PYTHON_DIR}/site-packages
|
||||
install -d ${D}${PYTHON_SITEPACKAGES_DIR}
|
||||
}
|
||||
|
||||
# Use setuptools site.py instead, avoid shared state issue
|
||||
do_install_append() {
|
||||
rm ${D}/${libdir}/${PYTHON_DIR}/site-packages/site.py
|
||||
rm ${D}/${libdir}/${PYTHON_DIR}/site-packages/__pycache__/site.cpython-*.pyc
|
||||
rm ${D}${PYTHON_SITEPACKAGES_DIR}/site.py
|
||||
rm ${D}${PYTHON_SITEPACKAGES_DIR}/__pycache__/site.cpython-*.pyc
|
||||
|
||||
# Install as pip3 and leave pip2 as default
|
||||
rm ${D}/${bindir}/pip
|
||||
|
||||
Reference in New Issue
Block a user