diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-20 12:24:13 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-20 12:26:19 +0100 |
commit | 9708f9cba7923fa0b5a620e032ab3d9e085385a7 (patch) | |
tree | 0bd9a2cc083e37cd69c7cbc8f27aca582c063700 /bitbake | |
parent | ca09a6f08cc29f79f9742058d737deaef9d6d5ef (diff) | |
download | poky-9708f9cba7923fa0b5a620e032ab3d9e085385a7.tar.gz |
bitbake/knotty: Exiting as soon as a fatal is seen is not desirable as the stacktrace won't be seen
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index f81759abf8..858a00b568 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
@@ -91,7 +91,7 @@ def init(server, eventHandler): | |||
91 | if isinstance(event, bb.msg.MsgFatal): | 91 | if isinstance(event, bb.msg.MsgFatal): |
92 | return_value = 1 | 92 | return_value = 1 |
93 | print('FATAL: ' + event._message) | 93 | print('FATAL: ' + event._message) |
94 | break | 94 | continue |
95 | if isinstance(event, bb.build.TaskFailed): | 95 | if isinstance(event, bb.build.TaskFailed): |
96 | return_value = 1 | 96 | return_value = 1 |
97 | logfile = event.logfile | 97 | logfile = event.logfile |