diff options
Diffstat (limited to 'bitbake-dev/lib/bb/cooker.py')
-rw-r--r-- | bitbake-dev/lib/bb/cooker.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake-dev/lib/bb/cooker.py b/bitbake-dev/lib/bb/cooker.py index e3bb56d376..339bb45ec1 100644 --- a/bitbake-dev/lib/bb/cooker.py +++ b/bitbake-dev/lib/bb/cooker.py | |||
@@ -169,12 +169,12 @@ class BBCooker: | |||
169 | 169 | ||
170 | def runCommands(self, server, data, abort): | 170 | def runCommands(self, server, data, abort): |
171 | """ | 171 | """ |
172 | Run any queued offline command | 172 | Run any queued asynchronous command |
173 | This is done by the idle handler so it runs in true context rather than | 173 | This is done by the idle handler so it runs in true context rather than |
174 | tied to any UI. | 174 | tied to any UI. |
175 | """ | 175 | """ |
176 | if self.cookerIdle and not abort: | 176 | if self.cookerIdle and not abort: |
177 | self.command.runOfflineCommand() | 177 | self.command.runAsyncCommand() |
178 | 178 | ||
179 | # Always reschedule | 179 | # Always reschedule |
180 | return True | 180 | return True |
@@ -670,7 +670,7 @@ class BBCooker: | |||
670 | retval = False | 670 | retval = False |
671 | if not retval: | 671 | if not retval: |
672 | self.cookerIdle = True | 672 | self.cookerIdle = True |
673 | self.command.finishOfflineCommand() | 673 | self.command.finishAsyncCommand() |
674 | bb.event.fire(bb.event.BuildCompleted(buildname, targets, self.configuration.event_data, failures)) | 674 | bb.event.fire(bb.event.BuildCompleted(buildname, targets, self.configuration.event_data, failures)) |
675 | return retval | 675 | return retval |
676 | 676 | ||
@@ -703,7 +703,7 @@ class BBCooker: | |||
703 | retval = False | 703 | retval = False |
704 | if not retval: | 704 | if not retval: |
705 | self.cookerIdle = True | 705 | self.cookerIdle = True |
706 | self.command.finishOfflineCommand() | 706 | self.command.finishAsyncCommand() |
707 | bb.event.fire(bb.event.BuildCompleted(buildname, targets, self.configuration.event_data, failures)) | 707 | bb.event.fire(bb.event.BuildCompleted(buildname, targets, self.configuration.event_data, failures)) |
708 | return retval | 708 | return retval |
709 | 709 | ||