mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
bitbake-dev: Fix python function task execution failure handling
This commit is contained in:
@@ -204,8 +204,11 @@ def exec_func_python(func, d, runfile, logfile):
|
|||||||
g['bb'] = bb
|
g['bb'] = bb
|
||||||
g['os'] = os
|
g['os'] = os
|
||||||
g['d'] = d
|
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):
|
def exec_func_shell(func, d, runfile, logfile, flags):
|
||||||
"""Execute a shell BB 'function' Returns true if execution was successful.
|
"""Execute a shell BB 'function' Returns true if execution was successful.
|
||||||
|
|||||||
Reference in New Issue
Block a user