diff options
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
| -rw-r--r-- | bitbake/lib/bb/cooker.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 1d38164f56..f06b71c42c 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
| @@ -338,6 +338,11 @@ class BBCooker: | |||
| 338 | parselog.exception("Unable to read %s", fn) | 338 | parselog.exception("Unable to read %s", fn) |
| 339 | raise | 339 | raise |
| 340 | 340 | ||
| 341 | # Display history | ||
| 342 | with closing(StringIO()) as env: | ||
| 343 | self.configuration.data.inchistory.emit(env) | ||
| 344 | logger.plain(env.getvalue()) | ||
| 345 | |||
| 341 | # emit variables and shell functions | 346 | # emit variables and shell functions |
| 342 | data.update_data(envdata) | 347 | data.update_data(envdata) |
| 343 | with closing(StringIO()) as env: | 348 | with closing(StringIO()) as env: |
