From b1046ef7439aa1acee6f6bbbdd0cfb97f34bf824 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 31 Oct 2008 14:37:24 +0000 Subject: bitbake: Don't export the GIT_PROXY_COMMAND in the fetcher code since it means selective proxying isn't possible --- bitbake/lib/bb/fetch/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake') 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) -- cgit 1.2.3-korg