diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2008-10-31 14:37:24 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2008-10-31 14:37:24 +0000 |
commit | b1046ef7439aa1acee6f6bbbdd0cfb97f34bf824 (patch) | |
tree | aa6dede13c36e3b4d1d32367570d807a7deb1f31 /bitbake/lib/bb/fetch | |
parent | 0e9f111c6c3fbd5743a0f3453a37aa79970967b3 (diff) | |
download | openembedded-core-b1046ef7439aa1acee6f6bbbdd0cfb97f34bf824.tar.gz openembedded-core-b1046ef7439aa1acee6f6bbbdd0cfb97f34bf824.tar.bz2 openembedded-core-b1046ef7439aa1acee6f6bbbdd0cfb97f34bf824.zip |
bitbake: Don't export the GIT_PROXY_COMMAND in the fetcher code since it means selective proxying isn't possible
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 db2ea6a230..784f19eccb 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py @@ -274,7 +274,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_PROXY_COMMAND', 'http_proxy', 'ftp_proxy'] + exportvars = ['PATH', 'GIT_PROXY_HOST', 'GIT_PROXY_PORT', 'http_proxy', 'ftp_proxy'] for var in exportvars: val = data.getVar(var, d, True) |