diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-04-11 19:02:15 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-12 08:11:30 +0100 |
commit | 376bf4a39063c2a936d20e8269c4b7681242c1fa (patch) | |
tree | 9375052253c8d8434d868c2e131dd7bcf0032636 /bitbake/lib/bb | |
parent | 0923ee40ae59133c91a95e0727eb1ab95aca13b8 (diff) | |
download | poky-376bf4a39063c2a936d20e8269c4b7681242c1fa.tar.gz |
builder: fix missing \ for if continuation
(Bitbake rev: f44f12b812d246da994519bc39789bf2dcfbac4b)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rwxr-xr-x | bitbake/lib/bb/ui/crumbs/builder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py index d8d09871cf..10b9a77032 100755 --- a/bitbake/lib/bb/ui/crumbs/builder.py +++ b/bitbake/lib/bb/ui/crumbs/builder.py | |||
@@ -972,7 +972,7 @@ class Builder(gtk.Window): | |||
972 | tmp_path = self.parameters.tmpdir | 972 | tmp_path = self.parameters.tmpdir |
973 | cmdline = bb.ui.crumbs.utils.which_terminal() | 973 | cmdline = bb.ui.crumbs.utils.which_terminal() |
974 | if os.path.exists(image_path) and os.path.exists(kernel_path) \ | 974 | if os.path.exists(image_path) and os.path.exists(kernel_path) \ |
975 | and os.path.exists(source_env_path) and os.path.exists(tmp_path) | 975 | and os.path.exists(source_env_path) and os.path.exists(tmp_path) \ |
976 | and cmdline: | 976 | and cmdline: |
977 | cmdline += "\' bash -c \"export OE_TMPDIR=" + tmp_path + "; " | 977 | cmdline += "\' bash -c \"export OE_TMPDIR=" + tmp_path + "; " |
978 | cmdline += "source " + source_env_path + " " + os.getcwd() + "; " | 978 | cmdline += "source " + source_env_path + " " + os.getcwd() + "; " |