diff options
| -rw-r--r-- | bitbake-dev/ChangeLog | 5 | ||||
| -rw-r--r-- | bitbake/ChangeLog | 5 | ||||
| -rw-r--r-- | bitbake/lib/bb/utils.py | 2 |
3 files changed, 11 insertions, 1 deletions
diff --git a/bitbake-dev/ChangeLog b/bitbake-dev/ChangeLog index 83f602e494..a0018d1519 100644 --- a/bitbake-dev/ChangeLog +++ b/bitbake-dev/ChangeLog | |||
| @@ -149,6 +149,11 @@ Changes in Bitbake 1.9.x: | |||
| 149 | - Fix PACKAGES_DYNAMIC handling of packages with '++' in the name | 149 | - Fix PACKAGES_DYNAMIC handling of packages with '++' in the name |
| 150 | - Rename __depends to __base_depends after configuration parsing so we don't | 150 | - Rename __depends to __base_depends after configuration parsing so we don't |
| 151 | recheck the validity of the config files time after time | 151 | recheck the validity of the config files time after time |
| 152 | - Add better environmental variable handling. By default it will now only pass certain | ||
| 153 | whitelisted variables into the data store. If BB_PRESERVE_ENV is set bitbake will use | ||
| 154 | all variable from the environment. If BB_ENV_WHITELIST is set, that whitelist will be | ||
| 155 | used instead of the internal bitbake one. Alternatively, BB_ENV_EXTRAWHITE can be used | ||
| 156 | to extend the internal whitelist. | ||
| 152 | 157 | ||
| 153 | Changes in Bitbake 1.8.0: | 158 | Changes in Bitbake 1.8.0: |
| 154 | - Release 1.7.x as a stable series | 159 | - Release 1.7.x as a stable series |
diff --git a/bitbake/ChangeLog b/bitbake/ChangeLog index a2d0da29ea..ceb7e648b7 100644 --- a/bitbake/ChangeLog +++ b/bitbake/ChangeLog | |||
| @@ -54,6 +54,11 @@ Changes in BitBake 1.8.x: | |||
| 54 | - Fix PACKAGES_DYNAMIC handling of packages with '++' in the name | 54 | - Fix PACKAGES_DYNAMIC handling of packages with '++' in the name |
| 55 | - Rename __depends to __base_depends after configuration parsing so we don't | 55 | - Rename __depends to __base_depends after configuration parsing so we don't |
| 56 | recheck the validity of the config files time after time | 56 | recheck the validity of the config files time after time |
| 57 | - Add better environmental variable handling. By default it will now only pass certain | ||
| 58 | whitelisted variables into the data store. If BB_PRESERVE_ENV is set bitbake will use | ||
| 59 | all variable from the environment. If BB_ENV_WHITELIST is set, that whitelist will be | ||
| 60 | used instead of the internal bitbake one. Alternatively, BB_ENV_EXTRAWHITE can be used | ||
| 61 | to extend the internal whitelist. | ||
| 57 | 62 | ||
| 58 | Changes in BitBake 1.8.10: | 63 | Changes in BitBake 1.8.10: |
| 59 | - Psyco is available only for x86 - do not use it on other architectures. | 64 | - Psyco is available only for x86 - do not use it on other architectures. |
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 3c1fd31b03..7b0fc40d11 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
| @@ -176,7 +176,7 @@ def better_exec(code, context, text, realfile): | |||
| 176 | raise | 176 | raise |
| 177 | 177 | ||
| 178 | # print the Header of the Error Message | 178 | # print the Header of the Error Message |
| 179 | bb.msg.error(bb.msg.domain.Util, "Error in executing: ", realfile) | 179 | bb.msg.error(bb.msg.domain.Util, "Error in executing: %s" % realfile) |
| 180 | bb.msg.error(bb.msg.domain.Util, "Exception:%s Message:%s" % (t,value) ) | 180 | bb.msg.error(bb.msg.domain.Util, "Exception:%s Message:%s" % (t,value) ) |
| 181 | 181 | ||
| 182 | # let us find the line number now | 182 | # let us find the line number now |
