summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobeventhandler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index d0ac6bd677..ef74e563f9 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -440,12 +440,12 @@ class HobHandler(gobject.GObject):
440 self.building = False 440 self.building = False
441 441
442 def cancel_parse(self): 442 def cancel_parse(self):
443 self.runCommand(["stateStop"]) 443 self.runCommand(["stateForceShutdown"])
444 444
445 def cancel_build(self, force=False): 445 def cancel_build(self, force=False):
446 if force: 446 if force:
447 # Force the cooker to stop as quickly as possible 447 # Force the cooker to stop as quickly as possible
448 self.runCommand(["stateStop"]) 448 self.runCommand(["stateForceShutdown"])
449 else: 449 else:
450 # Wait for tasks to complete before shutting down, this helps 450 # Wait for tasks to complete before shutting down, this helps
451 # leave the workdir in a usable state 451 # leave the workdir in a usable state