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:27:52 +0000
commitd895e9632d34b3141c25940b6ba79398f05d85aa (patch)
treed7778d54d0ad7c4b280282ffc2acc994377f4de4
parentedaeb8940813b620090a0797ad3b6a076897512d (diff)
downloadopenembedded-core-contrib-d895e9632d34b3141c25940b6ba79398f05d85aa.tar.gz
bitbake: depexp: use stateForceShutdown instead of stateStop
This state was renamed in bitbake 12e9d3 but this use of it wasn't changed. [ YOCTO #5445 ] (Bitbake rev: 196106100e2dedfacce95be0ee6def94c5a80f27) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/ui/depexp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/depexp.py b/bitbake/lib/bb/ui/depexp.py
index 5d13b5b79e..0c71a3ebd2 100644
--- a/bitbake/lib/bb/ui/depexp.py
+++ b/bitbake/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