bitbake-dev: Fix python function task execution failure handling

This commit is contained in:
Richard Purdie 2008-11-07 14:45:55 +00:00
parent 6d7f3cbcb7
commit 4f5bb4683d
1 changed files with 5 additions and 2 deletions

View File

@ -204,8 +204,11 @@ def exec_func_python(func, d, runfile, logfile):
g['bb'] = bb
g['os'] = os
g['d'] = d
utils.better_exec(comp, g, tmp, bbfile)
try:
utils.better_exec(comp, g, tmp, bbfile)
except:
bb.msg.error(bb.msg.domain.Build, "Function %s failed" % func)
raise FuncFailed("function %s failed" % func, logfile)
def exec_func_shell(func, d, runfile, logfile, flags):
"""Execute a shell BB 'function' Returns true if execution was successful.