mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
classes/testsdk: do_testsdkext avoid STAGING_DIR/BASE_WORKDIR in PATH
The inclusion of STAGING_DIR/BASE_WORKDIR in PATH is contaminating the environment, i.e. when try to sanity check perl (check_perl_modules) it takes perl from STAGING_DIR causing eSDK install to fail. (From OE-Core rev: 32611395e1da21f6f7f7916fb8077e35ee81bb23) Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
f56e9aa9a0
commit
5e978d7ed8
@@ -97,9 +97,18 @@ def testsdkext_main(d):
|
|||||||
# extensible sdk shows a warning if found bitbake in the path
|
# extensible sdk shows a warning if found bitbake in the path
|
||||||
# because can cause problems so clean it
|
# because can cause problems so clean it
|
||||||
new_path = ''
|
new_path = ''
|
||||||
|
paths_to_avoid = ['bitbake/bin', 'poky/scripts',
|
||||||
|
d.getVar('STAGING_DIR', True),
|
||||||
|
d.getVar('BASE_WORKDIR', True)]
|
||||||
for p in os.environ['PATH'].split(':'):
|
for p in os.environ['PATH'].split(':'):
|
||||||
if 'bitbake/bin' in p or 'poky/scripts' in p:
|
avoid = False
|
||||||
|
for pa in paths_to_avoid:
|
||||||
|
if pa in p:
|
||||||
|
avoid = True
|
||||||
|
break
|
||||||
|
if avoid:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
new_path = new_path + p + ':'
|
new_path = new_path + p + ':'
|
||||||
new_path = new_path[:-1]
|
new_path = new_path[:-1]
|
||||||
os.environ['PATH'] = new_path
|
os.environ['PATH'] = new_path
|
||||||
|
|||||||
Reference in New Issue
Block a user