diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index 2061522bf6..83a378febb 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py | |||
@@ -222,7 +222,7 @@ def exec_func_shell(function, d, runfile, cwd=None): | |||
222 | script.write("set -x\n") | 222 | script.write("set -x\n") |
223 | data.emit_func(function, script, d) | 223 | data.emit_func(function, script, d) |
224 | if cwd: | 224 | if cwd: |
225 | script.write("cd %s" % cwd) | 225 | script.write("cd %s\n" % cwd) |
226 | script.write("%s\n" % function) | 226 | script.write("%s\n" % function) |
227 | os.fchmod(script.fileno(), 0775) | 227 | os.fchmod(script.fileno(), 0775) |
228 | 228 | ||