From: Richard Purdie Date: Tue, 22 Sep 2009 18:48:49 +0000 (+0100) Subject: bitbake-dev: Sync exported variables with bitbake X-Git-Tag: 2011-1~6944 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=1bc5ed054ebddb8202ba1493a628b373a5de457a;p=openembedded-core.git bitbake-dev: Sync exported variables with bitbake Signed-off-by: Richard Purdie --- diff --git a/bitbake-dev/lib/bb/fetch/__init__.py b/bitbake-dev/lib/bb/fetch/__init__.py index cd7e59a558..b58177461b 100644 --- a/bitbake-dev/lib/bb/fetch/__init__.py +++ b/bitbake-dev/lib/bb/fetch/__init__.py @@ -293,7 +293,7 @@ def runfetchcmd(cmd, d, quiet = False): # rather than host provided # Also include some other variables. # FIXME: Should really include all export varaiables? - exportvars = ['PATH', 'GIT_PROXY_HOST', 'GIT_PROXY_PORT', 'GIT_CONFIG', 'http_proxy', 'ftp_proxy', 'SSH_AUTH_SOCK', 'SSH_AGENT_PID', 'HOME'] + exportvars = ['PATH', 'GIT_PROXY_COMMAND', 'GIT_PROXY_HOST', 'GIT_PROXY_PORT', 'GIT_CONFIG', 'http_proxy', 'ftp_proxy', 'SSH_AUTH_SOCK', 'SSH_AGENT_PID', 'HOME'] for var in exportvars: val = data.getVar(var, d, True)