]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
fetch/__init__.py: Set HOME environmental variable when running fetcher commands...
authorRichard Purdie <rpurdie@linux.intel.com>
Mon, 11 May 2009 21:33:14 +0000 (21:33 +0000)
committerRichard Purdie <rpurdie@linux.intel.com>
Mon, 11 May 2009 21:33:14 +0000 (21:33 +0000)
ChangeLog
lib/bb/fetch/__init__.py

index 4dd6a1b3ee97f537748ab3a3f44effb38ec19386..ca83a956501a909165ef71a0ac05e49894f5650d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -173,6 +173,7 @@ Changes in Bitbake 1.9.x:
        - Fix hg checkouts of specific revisions (from Poky)
        - Fix wget fetching of urls with parameters specified (from Poky)
        - Add username handling to git fetcher (from Poky)
+       - Set HOME environmental variable when running fetcher commands (from Poky)
 
 Changes in Bitbake 1.8.0:
        - Release 1.7.x as a stable series
index 6a931368dc1492f825a4178a53838137299b4686..df4eb961f152756b9ca1aee0d50b46aa9f17789c 100644 (file)
@@ -269,7 +269,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_CONFIG', 'http_proxy', 'ftp_proxy', 'SSH_AUTH_SOCK', 'SSH_AGENT_PID']
+    exportvars = ['PATH', 'GIT_PROXY_HOST', 'GIT_PROXY_PORT', 'GIT_CONFIG', 'http_proxy', 'ftp_proxy', 'SSH_AUTH_SOCK', 'SSH_AGENT_PID', 'HOME']
 
     for var in exportvars:
         val = data.getVar(var, d, True)