diff options
| -rw-r--r-- | bitbake/lib/bb/build.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index afb1aa7b30..3f6bc875c0 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py | |||
| @@ -188,7 +188,7 @@ def exec_func_python(func, d, runfile, logfile): | |||
| 188 | if sys.exc_info()[0] in (bb.parse.SkipPackage, bb.build.FuncFailed): | 188 | if sys.exc_info()[0] in (bb.parse.SkipPackage, bb.build.FuncFailed): |
| 189 | raise | 189 | raise |
| 190 | 190 | ||
| 191 | raise FuncFailed(func, d, logfile) | 191 | raise FuncFailed(func, logfile) |
| 192 | 192 | ||
| 193 | 193 | ||
| 194 | def exec_func_shell(func, d, runfile, logfile, flags): | 194 | def exec_func_shell(func, d, runfile, logfile, flags): |
| @@ -231,7 +231,7 @@ def exec_func_shell(func, d, runfile, logfile, flags): | |||
| 231 | if ret == 0: | 231 | if ret == 0: |
| 232 | return | 232 | return |
| 233 | 233 | ||
| 234 | raise FuncFailed(func, d, logfile) | 234 | raise FuncFailed(func, logfile) |
| 235 | 235 | ||
| 236 | 236 | ||
| 237 | def exec_task(fn, task, d): | 237 | def exec_task(fn, task, d): |
