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:21 +0100
commitf44f12b812d246da994519bc39789bf2dcfbac4b (patch)
tree75c6e2b6fde84b31c869e64345f2fb3207e961b3
parent4219e2ea033232d95117211947b751bdb5efafd4 (diff)
downloadbitbake-f44f12b812d246da994519bc39789bf2dcfbac4b.tar.gz
builder: fix missing \ for if continuation
Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xlib/bb/ui/crumbs/builder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/ui/crumbs/builder.py b/lib/bb/ui/crumbs/builder.py
index d8d09871c..10b9a7703 100755
--- a/lib/bb/ui/crumbs/builder.py
+++ b/lib/bb/ui/crumbs/builder.py
@@ -972,7 +972,7 @@ class Builder(gtk.Window):
tmp_path = self.parameters.tmpdir
cmdline = bb.ui.crumbs.utils.which_terminal()
if os.path.exists(image_path) and os.path.exists(kernel_path) \
- and os.path.exists(source_env_path) and os.path.exists(tmp_path)
+ and os.path.exists(source_env_path) and os.path.exists(tmp_path) \
and cmdline:
cmdline += "\' bash -c \"export OE_TMPDIR=" + tmp_path + "; "
cmdline += "source " + source_env_path + " " + os.getcwd() + "; "