[oe-commits] [openembedded-core] 13/18: base.bbclass: Add python3-native to native paths for hg fetcher

git at git.openembedded.org git at git.openembedded.org
Wed Dec 4 12:54:28 UTC 2019


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

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

commit cee582a614d00b5e3ad3c654de058f2e333a7b1c
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Sat Nov 30 00:07:05 2019 -0800

    base.bbclass: Add python3-native to native paths for hg fetcher
    
    This helps fix an issue where python interpreter in hg script could
    overflow the BINPRM_BUF_SIZE which is 128 on most of systems, because
    interpreter is hardcoded and build paths can be deep.
    
    This patch helps, because now the absolute python interp path in hg can
    be replaced with '/usr/bin/env python3' and it will ensure that python3
    from native install is used instead of the one on host.
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Cc: Christopher Larson <chris_larson at mentor.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/base.bbclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index ff3fbb2..31457f9 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -601,6 +601,7 @@ python () {
         # Mercurial packages should DEPEND on mercurial-native
         elif scheme == "hg":
             needsrcrev = True
+            d.appendVar("EXTRANATIVEPATH", ' python3-native ')
             d.appendVarFlag('do_fetch', 'depends', ' mercurial-native:do_populate_sysroot')
 
         # Perforce packages support SRCREV = "${AUTOREV}"

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


More information about the Openembedded-commits mailing list