From 9708f9cba7923fa0b5a620e032ab3d9e085385a7 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 20 Aug 2010 12:24:13 +0100 Subject: 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 --- bitbake/lib/bb/ui/knotty.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): if isinstance(event, bb.msg.MsgFatal): return_value = 1 print('FATAL: ' + event._message) - break + continue if isinstance(event, bb.build.TaskFailed): return_value = 1 logfile = event.logfile -- cgit v1.2.3-54-g00ecf