1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-02 13:29:49 +00:00

base.bbclass: Set GIT_CONFIG correctly

This commit is contained in:
Richard Purdie
2008-11-04 13:32:35 +00:00
parent 66481d67f4
commit 4c626238e7
3 changed files with 5 additions and 7 deletions
+1 -1
View File
@@ -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', 'http_proxy', 'ftp_proxy']
exportvars = ['PATH', 'GIT_PROXY_HOST', 'GIT_PROXY_PORT', 'GIT_CONFIG', 'http_proxy', 'ftp_proxy']
for var in exportvars:
val = data.getVar(var, d, True)