diff options
| -rw-r--r-- | bitbake/lib/bb/command.py | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 2bb5365c0c..06bd203c90 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py  | |||
| @@ -28,7 +28,9 @@ and must not trigger events, directly or indirectly. | |||
| 28 | Commands are queued in a CommandQueue | 28 | Commands are queued in a CommandQueue | 
| 29 | """ | 29 | """ | 
| 30 | 30 | ||
| 31 | import bb | 31 | import bb.event | 
| 32 | import bb.cooker | ||
| 33 | import bb.data | ||
| 32 | 34 | ||
| 33 | async_cmds = {} | 35 | async_cmds = {} | 
| 34 | sync_cmds = {} | 36 | sync_cmds = {} | 
| @@ -94,9 +96,9 @@ class Command: | |||
| 94 | 96 | ||
| 95 | def finishAsyncCommand(self, error = None): | 97 | def finishAsyncCommand(self, error = None): | 
| 96 | if error: | 98 | if error: | 
| 97 | bb.event.fire(bb.command.CookerCommandFailed(error), self.cooker.configuration.event_data) | 99 | bb.event.fire(CookerCommandFailed(error), self.cooker.configuration.event_data) | 
| 98 | else: | 100 | else: | 
| 99 | bb.event.fire(bb.command.CookerCommandCompleted(), self.cooker.configuration.event_data) | 101 | bb.event.fire(CookerCommandCompleted(), self.cooker.configuration.event_data) | 
| 100 | self.currentAsyncCommand = None | 102 | self.currentAsyncCommand = None | 
| 101 | 103 | ||
| 102 | 104 | ||
