summaryrefslogtreecommitdiffstats
path: root/bin/oe/build.py
diff options
context:
space:
mode:
authorGerald Britton <gbritton@doomcom.org>2004-04-21 05:20:52 +0000
committerGerald Britton <gbritton@doomcom.org>2004-04-21 05:20:52 +0000
commit4179b854c08df4937925917ebf81d76f65ecd9bc (patch)
treea3792147a26a16be0bca31292ff6a953842b7333 /bin/oe/build.py
parent781ad5d3bd5c3763152c98c42932808aac481558 (diff)
downloadbitbake-contrib-4179b854c08df4937925917ebf81d76f65ecd9bc.tar.gz
make 'set -e' in scripts actually work
Diffstat (limited to 'bin/oe/build.py')
-rw-r--r--bin/oe/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/oe/build.py b/bin/oe/build.py
index 3a27d8c22..a7f3f9c1f 100644
--- a/bin/oe/build.py
+++ b/bin/oe/build.py
@@ -163,7 +163,7 @@ def exec_func_shell(func, d):
data.emit_env(f, d)
f.write("cd %s\n" % os.getcwd())
- if func: f.write("%s || exit $?\n" % func)
+ if func: f.write("%s\n" % func)
f.close()
os.chmod(runfile, 0775)
if not func: