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 | |
parent | 4eee576f4f1b47d8ad3be458af4d29560bac5ac0 (diff) | |
download | poky-59040b5d1410d3c44926dd8b157a6044b300bd94.tar.gz |
__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')
-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): | |||
299 | # rather than host provided | 299 | # rather than host provided |
300 | # Also include some other variables. | 300 | # Also include some other variables. |
301 | # FIXME: Should really include all export varaiables? | 301 | # FIXME: Should really include all export varaiables? |
302 | exportvars = ['PATH', 'GIT_PROXY_HOST', 'GIT_PROXY_PORT', 'GIT_CONFIG', 'http_proxy', 'ftp_proxy', 'SSH_AUTH_SOCK', 'SSH_AGENT_PID', 'HOME'] | 302 | exportvars = ['PATH', 'GIT_PROXY_COMMAND', 'GIT_PROXY_HOST', 'GIT_PROXY_PORT', 'GIT_CONFIG', 'http_proxy', 'ftp_proxy', 'SSH_AUTH_SOCK', 'SSH_AGENT_PID', 'HOME'] |
303 | 303 | ||
304 | for var in exportvars: | 304 | for var in exportvars: |
305 | val = data.getVar(var, d, True) | 305 | val = data.getVar(var, d, True) |