[oe-commits] Mark Hatle : python-setuptools: Fix setuptools install libdir != /usr/lib

git at git.openembedded.org git at git.openembedded.org
Thu Aug 2 14:29:52 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: d8ca8b21c6959e772fa1b437ce498b7759fae0ab
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=d8ca8b21c6959e772fa1b437ce498b7759fae0ab

Author: Mark Hatle <mark.hatle at windriver.com>
Date:   Tue Jul 31 21:59:35 2012 -0500

python-setuptools: Fix setuptools install libdir != /usr/lib

--install-lib= is required to be passed via distutils install
otherwise the install location gets set to whatever the python-native
location is.

Signed-off-by: Mark Hatle <mark.hatle at windriver.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 .../python/python-setuptools_0.6c11.bb             |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/python/python-setuptools_0.6c11.bb b/meta/recipes-devtools/python/python-setuptools_0.6c11.bb
index a769714..24dd9e5 100644
--- a/meta/recipes-devtools/python/python-setuptools_0.6c11.bb
+++ b/meta/recipes-devtools/python/python-setuptools_0.6c11.bb
@@ -5,7 +5,7 @@ LICENSE = "PSF"
 LIC_FILES_CHKSUM = "file://setup.py;beginline=23;endline=23;md5=8a314270dd7a8dbca741775415f1716e"
 
 SRCNAME = "setuptools"
-PR = "ml4"
+PR = "ml5"
 DEPENDS += "python"
 DEPENDS_virtclass-native += "python-native"
 
@@ -16,6 +16,8 @@ S = "${WORKDIR}/${SRCNAME}-${PV}"
 
 inherit distutils
 
+DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${libdir}/${PYTHON_DIR}/site-packages"
+
 do_install_prepend() {
     install -d ${D}/${libdir}/${PYTHON_DIR}/site-packages
 }





More information about the Openembedded-commits mailing list