From patchwork Thu Apr 12 02:02:15 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel] builder: fix missing \ for if continuation Date: Thu, 12 Apr 2012 02:02:15 -0000 From: Saul Wold X-Patchwork-Id: 25645 Message-Id: <1334196135-614-1-git-send-email-sgw@linux.intel.com> To: bitbake-devel@lists.openembedded.org Signed-off-by: Saul Wold --- lib/bb/ui/crumbs/builder.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/bb/ui/crumbs/builder.py b/lib/bb/ui/crumbs/builder.py index d8d0987..10b9a77 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() + "; "