summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2011-03-07 15:54:29 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-03-31 12:20:54 +0100
commit77513ee5f08294f7894ca2560dfb98d5b5d6448b (patch)
tree6d664f51b7a61251b1f48e05079a18ddfd52bb83 /bitbake
parent6f4fbfe272f5d85cee95660a9278f3031533aec4 (diff)
downloadpoky-77513ee5f08294f7894ca2560dfb98d5b5d6448b.tar.gz
goggle: exit quietly on ^C
(Bitbake rev: bdd10e9b357417774f30cc52e89e3fa83bbbbfc0) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/goggle.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/goggle.py b/bitbake/lib/bb/ui/goggle.py
index ec5a38dd4d..bd03d31983 100644
--- a/bitbake/lib/bb/ui/goggle.py
+++ b/bitbake/lib/bb/ui/goggle.py
@@ -105,6 +105,8 @@ def main (server, eventHandler):
105 # ignore interrupted io 105 # ignore interrupted io
106 if ioerror.args[0] == 4: 106 if ioerror.args[0] == 4:
107 pass 107 pass
108 except KeyboardInterrupt:
109 pass
108 finally: 110 finally:
109 server.runCommand(["stateStop"]) 111 server.runCommand(["stateStop"])
110 112