diff options
| -rwxr-xr-x | bitbake/bin/bitbake | 2 | ||||
| -rw-r--r-- | bitbake/lib/bb/shell.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 36322d2a0e..6ae5bfaf89 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
| @@ -337,7 +337,7 @@ class BBCooker: | |||
| 337 | bb.msg.fatal(bb.msg.domain.Parsing, "Sorry, shell not available (%s)" % details ) | 337 | bb.msg.fatal(bb.msg.domain.Parsing, "Sorry, shell not available (%s)" % details ) |
| 338 | else: | 338 | else: |
| 339 | bb.data.update_data( self.configuration.data ) | 339 | bb.data.update_data( self.configuration.data ) |
| 340 | bb.data.expandKeys(localdata) | 340 | bb.data.expandKeys( self.configuration.data ) |
| 341 | shell.start( self ) | 341 | shell.start( self ) |
| 342 | sys.exit( 0 ) | 342 | sys.exit( 0 ) |
| 343 | 343 | ||
diff --git a/bitbake/lib/bb/shell.py b/bitbake/lib/bb/shell.py index 711cd4335f..cb8e97b715 100644 --- a/bitbake/lib/bb/shell.py +++ b/bitbake/lib/bb/shell.py | |||
| @@ -181,7 +181,7 @@ class BitBakeShellCommands: | |||
| 181 | 181 | ||
| 182 | except runqueue.TaskFailure, fnids: | 182 | except runqueue.TaskFailure, fnids: |
| 183 | for fnid in fnids: | 183 | for fnid in fnids: |
| 184 | print "ERROR: '%s' failed" % td.fn_index[fnid]) | 184 | print "ERROR: '%s' failed" % td.fn_index[fnid] |
| 185 | global last_exception | 185 | global last_exception |
| 186 | last_exception = runqueue.TaskFailure | 186 | last_exception = runqueue.TaskFailure |
| 187 | 187 | ||
