diff options
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/command.py | 2 | ||||
-rw-r--r-- | bitbake/lib/bb/cooker.py | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 641cc70619..6c7b891930 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
@@ -124,7 +124,7 @@ class Command: | |||
124 | else: | 124 | else: |
125 | bb.event.fire(CommandCompleted(), self.cooker.event_data) | 125 | bb.event.fire(CommandCompleted(), self.cooker.event_data) |
126 | self.currentAsyncCommand = None | 126 | self.currentAsyncCommand = None |
127 | 127 | self.cooker.finishcommand() | |
128 | 128 | ||
129 | class CommandsSync: | 129 | class CommandsSync: |
130 | """ | 130 | """ |
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 4b2e5bf917..0a4dc7eb62 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -1246,6 +1246,9 @@ class BBCooker: | |||
1246 | else: | 1246 | else: |
1247 | self.state = state.shutdown | 1247 | self.state = state.shutdown |
1248 | 1248 | ||
1249 | def finishcommand(self): | ||
1250 | self.state = state.initial | ||
1251 | |||
1249 | def initialize(self): | 1252 | def initialize(self): |
1250 | self.initConfigurationData() | 1253 | self.initConfigurationData() |
1251 | 1254 | ||