summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r--bitbake/lib/bb/command.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index 29b0a53e98..24ff341045 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -123,11 +123,11 @@ class Command:
123 123
124 def finishAsyncCommand(self, msg=None, code=None): 124 def finishAsyncCommand(self, msg=None, code=None):
125 if msg or msg == "": 125 if msg or msg == "":
126 bb.event.fire(CommandFailed(msg), self.cooker.event_data) 126 bb.event.fire(CommandFailed(msg), self.cooker.expanded_data)
127 elif code: 127 elif code:
128 bb.event.fire(CommandExit(code), self.cooker.event_data) 128 bb.event.fire(CommandExit(code), self.cooker.expanded_data)
129 else: 129 else:
130 bb.event.fire(CommandCompleted(), self.cooker.event_data) 130 bb.event.fire(CommandCompleted(), self.cooker.expanded_data)
131 self.currentAsyncCommand = None 131 self.currentAsyncCommand = None
132 self.cooker.finishcommand() 132 self.cooker.finishcommand()
133 133