aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch/__init__.py
diff options
context:
space:
mode:
authorJavier Martin <javier.martin@vista-silicon.com>2011-01-31 12:27:54 +0100
committerChris Larson <chris_larson@mentor.com>2011-02-09 12:44:47 -0700
commitd761cf98284b02eb3d3a1f879782c501c284b698 (patch)
tree25daa7891d18ed313ff0042973b877113be5e9d4 /lib/bb/fetch/__init__.py
parentb88dccd7c65a6edcccffca757eb5a4d982c2a7eb (diff)
downloadbitbake-d761cf98284b02eb3d3a1f879782c501c284b698.tar.gz
Export KRB5CCNAME variable
This allows fetching git repositories using Kerberos authentication. Signed-off-by: Javier Martin <javier.martin@vista-silicon.com> Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/fetch/__init__.py')
-rw-r--r--lib/bb/fetch/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch/__init__.py b/lib/bb/fetch/__init__.py
index 62ba4ea63..645fb3f82 100644
--- a/lib/bb/fetch/__init__.py
+++ b/lib/bb/fetch/__init__.py
@@ -437,7 +437,7 @@ def runfetchcmd(cmd, d, quiet = False):
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']
+ 'KRB5CCNAME', 'SSH_AUTH_SOCK', 'SSH_AGENT_PID', 'HOME']
for var in exportvars:
val = data.getVar(var, d, True)