diff options
| author | Chris Larson <chris_larson@mentor.com> | 2011-02-25 17:05:56 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-03 22:51:28 +0000 |
| commit | c07a153e7232d7070e97f5e661a8b2831b303806 (patch) | |
| tree | bca2b7fcd7c7180c877d6ce96d53f2718300187e /bitbake/lib/bb/build.py | |
| parent | 043b70419ed8f37157a44491475bea548f92de2b (diff) | |
| download | poky-c07a153e7232d7070e97f5e661a8b2831b303806.tar.gz | |
build: add missing newline
(Bitbake rev: a7aa0415bdaa458a941004bf8dd8bbfeddd6ef5a)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/build.py')
| -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 | ||
