summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorMike Turquette <mturquette@ti.com>2009-08-24 11:35:04 -0500
committerMike Turquette <mturquette@ti.com>2009-08-26 10:56:53 -0500
commit59040b5d1410d3c44926dd8b157a6044b300bd94 (patch)
tree90c9f09ca49e59fd1987eb118a1e6dcc895adbe5 /bitbake
parent4eee576f4f1b47d8ad3be458af4d29560bac5ac0 (diff)
downloadpoky-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')
-rw-r--r--bitbake/lib/bb/fetch/__init__.py2
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)