From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 7CCD4E00B89; Mon, 14 Sep 2015 06:30:24 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] * -5.0 RCVD_IN_DNSWL_HI RBL: Sender listed at http://www.dnswl.org/, high * trust * [192.55.52.88 listed in list.dnswl.org] Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 07238E00B79 for ; Mon, 14 Sep 2015 06:30:23 -0700 (PDT) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP; 14 Sep 2015 06:30:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,528,1437462000"; d="scan'208";a="789062573" Received: from sentry.rb.intel.com ([10.237.105.63]) by fmsmga001.fm.intel.com with ESMTP; 14 Sep 2015 06:30:22 -0700 From: Cristian Iorga To: toaster@yoctoproject.org Date: Mon, 14 Sep 2015 16:31:01 +0300 Message-Id: <1442237461-19173-1-git-send-email-cristian.iorga@intel.com> X-Mailer: git-send-email 2.1.4 Subject: [PATCH] toaster: warning text formatting small improvement X-BeenThere: toaster@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Web based interface for BitBake List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Sep 2015 13:30:24 -0000 The warning does not add a carriage return, so warning text is mixed with shell prompt. Signed-off-by: Cristian Iorga --- bitbake/bin/toaster | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster index 411ce2c..ac27826 100755 --- a/bitbake/bin/toaster +++ b/bitbake/bin/toaster @@ -197,7 +197,7 @@ if [ `basename \"$0\"` = `basename \"${SRCFILE}\"` ]; then fi if [ -n "$BUILDDIR" ]; then - printf "Error: It looks like you sourced oe-init-build-env. Toaster cannot start in build mode from an oe-core build environment.\n You should be starting Toaster from a new terminal window." 1>&2 + printf "Error: It looks like you sourced oe-init-build-env. Toaster cannot start in build mode from an oe-core build environment.\n You should be starting Toaster from a new terminal window.\n" 1>&2 exit 1 fi -- 2.1.4