bitbake: bb.fatal: Raise a BBHandledException instead of exiting
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 30 May 2014 14:57:50 +0000 (15:57 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 1 Jun 2014 13:29:32 +0000 (14:29 +0100)
With new bitbake UIs having the cooker exit at 'random' points
in the codebase is problematic. This patch raises an exception
which matches the situation instead.

(Bitbake rev: 181a9735d02ebd517378558e909efc8b1b118973)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/__init__.py

index 1478dd2..84f6ec3 100644 (file)
@@ -99,8 +99,7 @@ def error(*args):
 
 def fatal(*args):
     logger.critical(''.join(args))
-    sys.exit(1)
-
+    raise BBHandledException()
 
 def deprecated(func, name=None, advice=""):
     """This is a decorator which can be used to mark functions