python-setuptools: Fix setuptools install libdir != /usr/lib
authorMark Hatle <mark.hatle@windriver.com>
Wed, 1 Aug 2012 02:59:35 +0000 (21:59 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 2 Aug 2012 14:28:39 +0000 (15:28 +0100)
--install-lib= is required to be passed via distutils install
otherwise the install location gets set to whatever the python-native
location is.

(From OE-Core rev: d8ca8b21c6959e772fa1b437ce498b7759fae0ab)

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/python/python-setuptools_0.6c11.bb

index a769714..24dd9e5 100644 (file)
@@ -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
 }