summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r--bitbake/lib/bb/command.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index 3527ad03c1..641cc70619 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -137,13 +137,13 @@ class CommandsSync:
137 """ 137 """
138 Trigger cooker 'shutdown' mode 138 Trigger cooker 'shutdown' mode
139 """ 139 """
140 command.cooker.shutdown() 140 command.cooker.shutdown(False)
141 141
142 def stateStop(self, command, params): 142 def stateForceShutdown(self, command, params):
143 """ 143 """
144 Stop the cooker 144 Stop the cooker
145 """ 145 """
146 command.cooker.stop() 146 command.cooker.shutdown(True)
147 147
148 def getVariable(self, command, params): 148 def getVariable(self, command, params):
149 """ 149 """