]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake: Sync with upstream
authorRichard Purdie <richard@openedhand.com>
Tue, 30 Sep 2008 21:12:36 +0000 (21:12 +0000)
committerRichard Purdie <richard@openedhand.com>
Tue, 30 Sep 2008 21:12:36 +0000 (21:12 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5350 311d38ba-8fff-0310-9ca6-ca027cbcb966

bitbake-dev/ChangeLog
bitbake/ChangeLog
bitbake/lib/bb/utils.py

index 83f602e49489c4e3d1db5b4d14d77a75d765194a..a0018d1519450684f6a00dca0c04362b59124796 100644 (file)
@@ -149,6 +149,11 @@ Changes in Bitbake 1.9.x:
        - Fix PACKAGES_DYNAMIC handling of packages with '++' in the name
        - Rename __depends to __base_depends after configuration parsing so we don't
          recheck the validity of the config files time after time
+       - Add better environmental variable handling. By default it will now only pass certain 
+         whitelisted variables into the data store. If BB_PRESERVE_ENV is set bitbake will use
+         all variable from the environment. If BB_ENV_WHITELIST is set, that whitelist will be
+         used instead of the internal bitbake one. Alternatively, BB_ENV_EXTRAWHITE can be used
+         to extend the internal whitelist.
 
 Changes in Bitbake 1.8.0:
        - Release 1.7.x as a stable series
index a2d0da29eaa0d6c3ee1c14d886f4a3b60d02adb3..ceb7e648b794c96612592c300dda36b78a8c4711 100644 (file)
@@ -54,6 +54,11 @@ Changes in BitBake 1.8.x:
        - Fix PACKAGES_DYNAMIC handling of packages with '++' in the name
        - Rename __depends to __base_depends after configuration parsing so we don't
          recheck the validity of the config files time after time
+       - Add better environmental variable handling. By default it will now only pass certain 
+         whitelisted variables into the data store. If BB_PRESERVE_ENV is set bitbake will use
+         all variable from the environment. If BB_ENV_WHITELIST is set, that whitelist will be
+         used instead of the internal bitbake one. Alternatively, BB_ENV_EXTRAWHITE can be used
+         to extend the internal whitelist.
 
 Changes in BitBake 1.8.10:
        - Psyco is available only for x86 - do not use it on other architectures.
index 3c1fd31b03d872ad6de1065e253c910ab36dd75d..7b0fc40d11b697fef74ebc792245c95ae90621ee 100644 (file)
@@ -176,7 +176,7 @@ def better_exec(code, context, text, realfile):
             raise
 
         # print the Header of the Error Message
-        bb.msg.error(bb.msg.domain.Util, "Error in executing: ", realfile)
+        bb.msg.error(bb.msg.domain.Util, "Error in executing: %s" % realfile)
         bb.msg.error(bb.msg.domain.Util, "Exception:%s Message:%s" % (t,value) )
 
         # let us find the line number now