diff options
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r-- | bitbake/lib/bb/command.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 5bce796b7c..db20f3ffad 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
@@ -133,11 +133,11 @@ class Command: | |||
133 | 133 | ||
134 | def finishAsyncCommand(self, msg=None, code=None): | 134 | def finishAsyncCommand(self, msg=None, code=None): |
135 | if msg or msg == "": | 135 | if msg or msg == "": |
136 | bb.event.fire(CommandFailed(msg), self.cooker.expanded_data) | 136 | bb.event.fire(CommandFailed(msg), self.cooker.data) |
137 | elif code: | 137 | elif code: |
138 | bb.event.fire(CommandExit(code), self.cooker.expanded_data) | 138 | bb.event.fire(CommandExit(code), self.cooker.data) |
139 | else: | 139 | else: |
140 | bb.event.fire(CommandCompleted(), self.cooker.expanded_data) | 140 | bb.event.fire(CommandCompleted(), self.cooker.data) |
141 | self.currentAsyncCommand = None | 141 | self.currentAsyncCommand = None |
142 | self.cooker.finishcommand() | 142 | self.cooker.finishcommand() |
143 | 143 | ||