summaryrefslogtreecommitdiffstats
path: root/lib/bb/ui
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2011-03-07 15:54:29 -0700
committerChris Larson <chris_larson@mentor.com>2011-03-07 15:54:29 -0700
commitbdd10e9b357417774f30cc52e89e3fa83bbbbfc0 (patch)
tree8f629dbc4dffc7012daf8297179ea340919b39a0 /lib/bb/ui
parentedd5075a50c435ef42ebe9d0003a1e9bbe85e25b (diff)
downloadbitbake-bdd10e9b357417774f30cc52e89e3fa83bbbbfc0.tar.gz
goggle: exit quietly on ^C
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/ui')
-rw-r--r--lib/bb/ui/goggle.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bb/ui/goggle.py b/lib/bb/ui/goggle.py
index 5d45f004c..6278a4cbf 100644
--- a/lib/bb/ui/goggle.py
+++ b/lib/bb/ui/goggle.py
@@ -106,6 +106,8 @@ def main (server, eventHandler):
# ignore interrupted io
if ioerror.args[0] == 4:
pass
+ except KeyboardInterrupt:
+ pass
finally:
server.runCommand(["stateStop"])