[oe-commits] [openembedded-core] 13/15: eSDK.py: unset BBPATH and BUILDDIR to avoid eSDK failure

git at git.openembedded.org git at git.openembedded.org
Thu Jan 24 17:46:47 UTC 2019


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

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

commit bc07d825ce8bb3b337623c232fef61f2781c82af
Author: Chen Qi <Qi.Chen at windriver.com>
AuthorDate: Tue Jan 22 17:09:50 2019 +0800

    eSDK.py: unset BBPATH and BUILDDIR to avoid eSDK failure
    
    When executing eSDK test case, the following error appears.
    
      WARNING: attempting to use the extensible SDK in an environment
      	   set up to run bitbake - this may lead to unexpected
    	   results. Please source this script in a new shell session
    	   instead.
    
      FileExistsError: [Errno 17] File exists: '/.../tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/selftest-esdk-fcuyzsqu/tmp/sysroots/x86_64/bin/pigz' -> '/.../tmp/hosttools/pigz'
    
    So unset these two vars to avoid messing things up.
    
    Signed-off-by: Chen Qi <Qi.Chen at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/selftest/cases/eSDK.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/selftest/cases/eSDK.py b/meta/lib/oeqa/selftest/cases/eSDK.py
index 8e3a43d..8eb6ec6 100644
--- a/meta/lib/oeqa/selftest/cases/eSDK.py
+++ b/meta/lib/oeqa/selftest/cases/eSDK.py
@@ -32,7 +32,7 @@ class oeSDKExtSelfTest(OESelftestTestCase):
         if not 'shell' in options:
             options['shell'] = True
 
-        runCmd("cd %s; . %s; %s" % (tmpdir_eSDKQA, env_eSDK, cmd), **options)
+        runCmd("cd %s; unset BBPATH; unset BUILDDIR; . %s; %s" % (tmpdir_eSDKQA, env_eSDK, cmd), **options)
 
     @staticmethod
     def generate_eSDK(image):

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


More information about the Openembedded-commits mailing list