libkas: include another space when extending BB_ENV_EXTRAWHITE
the way the env variable got extended broke the last entry in it and the first entry in the added string because the two strings where not space separated i.e. "... no_proxySSTATE_DIR ..." now you shoud get "... no_proxy SSTATE_DIR ..." Seems that problem was in kas since day one. Signed-off-by: Henning Schild <henning.schild@siemens.com>
This commit is contained in:
parent
4140961b11
commit
62cf4fb0eb
@ -314,7 +314,7 @@ def get_build_environ(config, build_dir):
|
||||
env.update(conf_env)
|
||||
|
||||
if 'BB_ENV_EXTRAWHITE' in env:
|
||||
extra_white = env['BB_ENV_EXTRAWHITE'] + ' '.join(env_vars)
|
||||
extra_white = env['BB_ENV_EXTRAWHITE'] + ' ' + ' '.join(env_vars)
|
||||
env.update({'BB_ENV_EXTRAWHITE': extra_white})
|
||||
|
||||
env_vars.extend(['SSH_AGENT_PID', 'SSH_AUTH_SOCK',
|
||||
|
Loading…
Reference in New Issue
Block a user