diff options
-rw-r--r-- | bitbake/lib/bb/cooker.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 5dd8a9575..3881df484 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -692,8 +692,8 @@ class BBCooker: failures = failures + 1 retval = False if not retval: - self.command.finishAsyncCommand() bb.event.fire(bb.event.BuildCompleted(buildname, item, failures), self.configuration.event_data) + self.command.finishAsyncCommand() return False return 0.5 @@ -728,8 +728,8 @@ class BBCooker: failures = failures + 1 retval = False if not retval: - self.command.finishAsyncCommand() bb.event.fire(bb.event.BuildCompleted(buildname, targets, failures), self.configuration.event_data) + self.command.finishAsyncCommand() return None return 0.5 |