diff options
author | Mike Turquette <mturquette@ti.com> | 2009-08-24 11:35:04 -0500 |
---|---|---|
committer | Mike Turquette <mturquette@ti.com> | 2009-08-26 10:56:53 -0500 |
commit | 59040b5d1410d3c44926dd8b157a6044b300bd94 (patch) | |
tree | 90c9f09ca49e59fd1987eb118a1e6dcc895adbe5 /bitbake/lib/bb/fetch | |
parent | 4eee576f4f1b47d8ad3be458af4d29560bac5ac0 (diff) | |
download | openembedded-core-59040b5d1410d3c44926dd8b157a6044b300bd94.tar.gz openembedded-core-59040b5d1410d3c44926dd8b157a6044b300bd94.tar.bz2 openembedded-core-59040b5d1410d3c44926dd8b157a6044b300bd94.zip |
__init__.py: export GIT_PROXY_COMMAND for those behind draconian proxies
Signed-off-by: Mike Turquette <mturquette@ti.com>
Diffstat (limited to 'bitbake/lib/bb/fetch')
-rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index 368e9e78c1..d7b9463b4e 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py @@ -299,7 +299,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) |