From 5503ed14edea96b724ba54c29d87da8a25245d00 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Fri, 16 Sep 2016 13:05:11 -0700 Subject: bitbake: bb.build: in _exec_task, catch BBHandledException We don't want a traceback for this exception, we need to catch it, fire TaskFailed, and return failure. (Bitbake rev: 63966ada459d44d3dc7817ad2a026a22e8f6700f) Signed-off-by: Christopher Larson Signed-off-by: Richard Purdie --- bitbake/lib/bb/build.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bitbake') diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index fcf0149178..2ed0441b49 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py @@ -575,6 +575,9 @@ def _exec_task(fn, task, d, quieterr): logger.error(str(exc)) event.fire(TaskFailed(task, logfn, localdata, errprinted), localdata) return 1 + except bb.BBHandledException: + event.fire(TaskFailed(task, logfn, localdata, True), localdata) + return 1 finally: sys.stdout.flush() sys.stderr.flush() -- cgit v1.2.3-54-g00ecf