diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-06 17:41:55 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-16 12:31:19 +0100 |
commit | 3cd042f5055eb217e71213fbe2243575d604c186 (patch) | |
tree | bc179d8eabee49de85d2b24b589103509f312d7d /bitbake/lib | |
parent | 5c44f9a78dd310b31df2d84128c4b3ca468d685d (diff) | |
download | poky-3cd042f5055eb217e71213fbe2243575d604c186.tar.gz |
bitbake: runqueue: Remove unneeded exception catching from fork_off_task()
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 8814343377..d650b65af3 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1072,9 +1072,6 @@ class RunQueue: | |||
1072 | bb.build.exec_task(taskname, the_data) | 1072 | bb.build.exec_task(taskname, the_data) |
1073 | os._exit(0) | 1073 | os._exit(0) |
1074 | 1074 | ||
1075 | except bb.build.FuncFailed: | ||
1076 | bb.msg.error(bb.msg.domain.Build, "task stack execution failed") | ||
1077 | os._exit(1) | ||
1078 | except bb.build.EventException as e: | 1075 | except bb.build.EventException as e: |
1079 | event = e.args[1] | 1076 | event = e.args[1] |
1080 | bb.msg.error(bb.msg.domain.Build, "%s event exception, aborting" % bb.event.getName(event)) | 1077 | bb.msg.error(bb.msg.domain.Build, "%s event exception, aborting" % bb.event.getName(event)) |