summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/__init__.py')
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 7466a381b5..21f576eebc 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -458,16 +458,16 @@ def runfetchcmd(cmd, d, quiet = False, cleanup = []):
458 # rather than host provided 458 # rather than host provided
459 # Also include some other variables. 459 # Also include some other variables.
460 # FIXME: Should really include all export varaiables? 460 # FIXME: Should really include all export varaiables?
461 exportvars = ['PATH', 'GIT_PROXY_COMMAND', 'GIT_PROXY_HOST', 461 exportvars = ['HOME', 'PATH',
462 'GIT_PROXY_PORT', 'GIT_CONFIG',
463 'HTTP_PROXY', 'http_proxy', 462 'HTTP_PROXY', 'http_proxy',
464 'HTTPS_PROXY', 'https_proxy', 463 'HTTPS_PROXY', 'https_proxy',
465 'FTP_PROXY', 'ftp_proxy', 464 'FTP_PROXY', 'ftp_proxy',
466 'FTPS_PROXY', 'ftps_proxy', 465 'FTPS_PROXY', 'ftps_proxy',
467 'NO_PROXY', 'no_proxy', 466 'NO_PROXY', 'no_proxy',
468 'ALL_PROXY', 'all_proxy', 467 'ALL_PROXY', 'all_proxy',
469 'SSH_AUTH_SOCK', 'SSH_AGENT_PID', 'HOME', 468 'GIT_PROXY_COMMAND',
470 'GIT_PROXY_IGNORE', 'SOCKS5_USER', 'SOCKS5_PASSWD'] 469 'SSH_AUTH_SOCK', 'SSH_AGENT_PID',
470 'SOCKS5_USER', 'SOCKS5_PASSWD']
471 471
472 for var in exportvars: 472 for var in exportvars:
473 val = d.getVar(var, True) 473 val = d.getVar(var, True)