diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-25 17:31:23 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-25 17:31:23 +0000 |
commit | 871f731e5733c27664c4a341cf4b6b0770cb1909 (patch) | |
tree | 5e821558a2c83fa651cfc9759e29ccbf1ec91042 /bitbake | |
parent | fb245be03d8e3327165033045245f5f853c0b0d4 (diff) | |
download | openembedded-core-871f731e5733c27664c4a341cf4b6b0770cb1909.tar.gz openembedded-core-871f731e5733c27664c4a341cf4b6b0770cb1909.tar.bz2 openembedded-core-871f731e5733c27664c4a341cf4b6b0770cb1909.zip |
bitbake/cooker.py: Finishing the command needs to happen after the BuildCompleted event else the cooker can shutdown first
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-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 5dd8a95759..3881df484a 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 |