summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2014-11-13 16:33:18 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-11-20 13:26:09 +0000
commit196106100e2dedfacce95be0ee6def94c5a80f27 (patch)
treebdfc7b9260a2996bf61e3e90521c3f80edcf16f2
parent2a8e847de85546d43600a561f9c63aa36bd69222 (diff)
downloadbitbake-contrib-196106100e2dedfacce95be0ee6def94c5a80f27.tar.gz
depexp: use stateForceShutdown instead of stateStop
This state was renamed in bitbake 12e9d3 but this use of it wasn't changed. [ YOCTO #5445 ] Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/ui/depexp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/ui/depexp.py b/lib/bb/ui/depexp.py
index 5d13b5b79..0c71a3ebd 100644
--- a/lib/bb/ui/depexp.py
+++ b/lib/bb/ui/depexp.py
@@ -236,7 +236,7 @@ def main(server, eventHandler, params):
try:
event = eventHandler.waitEvent(0.25)
if gtkthread.quit.isSet():
- _, error = server.runCommand(["stateStop"])
+ _, error = server.runCommand(["stateForceShutdown"])
if error:
print('Unable to cleanly stop: %s' % error)
break