diff options
| author | Chris Larson <chris_larson@mentor.com> | 2011-03-07 15:54:29 -0700 |
|---|---|---|
| committer | Saul Wold <sgw@linux.intel.com> | 2011-05-06 17:44:21 -0700 |
| commit | c7301228c086004f60a10649fa61fc1c127f93c6 (patch) | |
| tree | 99ff29916beddb1e62113e9cd62a13a977688250 /bitbake/lib/bb | |
| parent | f77efdf544abd998b4515dd13a80e0233e8b0675 (diff) | |
| download | poky-c7301228c086004f60a10649fa61fc1c127f93c6.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/lib/bb')
| -rw-r--r-- | bitbake/lib/bb/ui/goggle.py | 2 |
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 | ||
