summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2012-04-11 19:02:15 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-12 08:11:30 +0100
commit376bf4a39063c2a936d20e8269c4b7681242c1fa (patch)
tree9375052253c8d8434d868c2e131dd7bcf0032636
parent0923ee40ae59133c91a95e0727eb1ab95aca13b8 (diff)
downloadpoky-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>
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/builder.py2
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() + "; "