diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2019-01-22 17:09:50 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-24 17:45:25 +0000 |
commit | 9a9124e50c449c324a6b070873579640b7d216d6 (patch) | |
tree | 0914458ea4afc9fa1bd0b593b59cfa08ecebad27 /meta | |
parent | ba346e6aebef3c38c93f9330cdae4e462d67fd5f (diff) | |
download | poky-9a9124e50c449c324a6b070873579640b7d216d6.tar.gz |
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.
(From OE-Core rev: bc07d825ce8bb3b337623c232fef61f2781c82af)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/eSDK.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/eSDK.py b/meta/lib/oeqa/selftest/cases/eSDK.py index 8e3a43d1c0..8eb6ec660c 100644 --- a/meta/lib/oeqa/selftest/cases/eSDK.py +++ b/meta/lib/oeqa/selftest/cases/eSDK.py | |||
@@ -32,7 +32,7 @@ class oeSDKExtSelfTest(OESelftestTestCase): | |||
32 | if not 'shell' in options: | 32 | if not 'shell' in options: |
33 | options['shell'] = True | 33 | options['shell'] = True |
34 | 34 | ||
35 | runCmd("cd %s; . %s; %s" % (tmpdir_eSDKQA, env_eSDK, cmd), **options) | 35 | runCmd("cd %s; unset BBPATH; unset BUILDDIR; . %s; %s" % (tmpdir_eSDKQA, env_eSDK, cmd), **options) |
36 | 36 | ||
37 | @staticmethod | 37 | @staticmethod |
38 | def generate_eSDK(image): | 38 | def generate_eSDK(image): |