summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/build.py')
-rw-r--r--bitbake/lib/bb/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index ab3344c460..9862e8878e 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -694,7 +694,7 @@ def _exec_task(fn, task, d, quieterr):
694 except bb.BBHandledException: 694 except bb.BBHandledException:
695 event.fire(TaskFailed(task, fn, logfn, localdata, True), localdata) 695 event.fire(TaskFailed(task, fn, logfn, localdata, True), localdata)
696 return 1 696 return 1
697 except Exception as exc: 697 except (Exception, SystemExit) as exc:
698 if quieterr: 698 if quieterr:
699 event.fire(TaskFailedSilent(task, fn, logfn, localdata), localdata) 699 event.fire(TaskFailedSilent(task, fn, logfn, localdata), localdata)
700 else: 700 else: