[oe-commits] [openembedded-core] 02/05: python.inc: Fix python2/3 hosttools path references

git at git.openembedded.org git at git.openembedded.org
Thu May 18 12:18:04 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch pyro
in repository openembedded-core.

commit 8e3134953edfc88bf3d135b5dc00d361f84b5f37
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu May 4 11:58:05 2017 +0100

    python.inc: Fix python2/3 hosttools path references
    
    Both native and target versions of this file reference mkdir and install
    in hosttools paths. Use the version from PATH instead.
    
    (From OE-Core rev: 080197bf3bdf612da8104c2ae7f0b2c8dea32a0b)
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-devtools/python/python.inc | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta/recipes-devtools/python/python.inc b/meta/recipes-devtools/python/python.inc
index b9ec692..b4bce24 100644
--- a/meta/recipes-devtools/python/python.inc
+++ b/meta/recipes-devtools/python/python.inc
@@ -30,3 +30,9 @@ EXTRA_OECONF = "\
   ac_cv_header_bluetooth_bluetooth_h=no ac_cv_header_bluetooth_h=no \
   ${PYTHONLSBOPTS} \
 "
+
+do_install_append () {
+	sed -i -e 's:${HOSTTOOLS_DIR}/install:install:g' \
+		-e 's:${HOSTTOOLS_DIR}/mkdir:mkdir:g' \
+		${D}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata.py
+}

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list