summaryrefslogtreecommitdiffstats
path: root/bitbake
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 /bitbake
parentedaeb8940813b620090a0797ad3b6a076897512d (diff)
downloadpoky-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>
Diffstat (limited to 'bitbake')
-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):
236 try: 236 try:
237 event = eventHandler.waitEvent(0.25) 237 event = eventHandler.waitEvent(0.25)
238 if gtkthread.quit.isSet(): 238 if gtkthread.quit.isSet():
239 _, error = server.runCommand(["stateStop"]) 239 _, error = server.runCommand(["stateForceShutdown"])
240 if error: 240 if error:
241 print('Unable to cleanly stop: %s' % error) 241 print('Unable to cleanly stop: %s' % error)
242 break 242 break