1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-02 01:19:52 +00:00

bitbake: runqueue: Remove unneeded exception catching from fork_off_task()

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie
2010-07-06 17:41:55 +01:00
parent 5c44f9a78d
commit 3cd042f505
-3
View File
@@ -1072,9 +1072,6 @@ class RunQueue:
bb.build.exec_task(taskname, the_data)
os._exit(0)
except bb.build.FuncFailed:
bb.msg.error(bb.msg.domain.Build, "task stack execution failed")
os._exit(1)
except bb.build.EventException as e:
event = e.args[1]
bb.msg.error(bb.msg.domain.Build, "%s event exception, aborting" % bb.event.getName(event))