From: Matthew McClintock Date: Tue, 4 Oct 2011 19:08:37 +0000 (-0500) Subject: fetch2: Export additional variables to the fetchers X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=191e61a39caea6b562c4cf09667b9015e3723bb2;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git fetch2: Export additional variables to the fetchers git could need these environment variables when working behind a proxy (Bitbake rev: dca46cc2e1c75b6add2c4801e2994a4812745f5b) Signed-off-by: Matthew McClintock Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index f6fa46c6103..fb6138b0285 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py @@ -385,7 +385,8 @@ def runfetchcmd(cmd, d, quiet = False, cleanup = []): exportvars = ['PATH', 'GIT_PROXY_COMMAND', 'GIT_PROXY_HOST', 'GIT_PROXY_PORT', 'GIT_CONFIG', 'http_proxy', 'ftp_proxy', 'https_proxy', 'no_proxy', 'ALL_PROXY', 'all_proxy', - 'SSH_AUTH_SOCK', 'SSH_AGENT_PID', 'HOME'] + 'SSH_AUTH_SOCK', 'SSH_AGENT_PID', 'HOME', + 'GIT_PROXY_IGNORE', 'SOCKS5_USER', 'SOCKS5_PASSWD'] for var in exportvars: val = bb.data.getVar(var, d, True)