From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id DDE0FE00D50; Fri, 18 Sep 2015 07:48:28 -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=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low * trust * [209.85.212.170 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mail-wi0-f170.google.com (mail-wi0-f170.google.com [209.85.212.170]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 1DD2CE00BF8 for ; Fri, 18 Sep 2015 07:48:27 -0700 (PDT) Received: by wicfx3 with SMTP id fx3so67541583wic.1 for ; Fri, 18 Sep 2015 07:48:26 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=g/E8ULIW4xn/H5QVH0l2yfhVrmfPqYPv02/uArUcg4U=; b=fQui0r1h1+J6L3hMT/DIjPRMN7YNJNgMXukrK/yydBvUK1BBAVeMx6HXX+mMR1SJ38 vmnXW4JOW9NStJhHIeQVFGzrB3t2kCrOIEfqguFoyX3ZpFazpthmg5q7ygNOHI6U4I4d c/sgzw9upxtxhVI7c2BWdokwv0SjCfxuEjV8URGZEAgxxZ8GhGi7OQRH82b7EWF+81ny +wGs9hgviFMXjwqXODE6DiJxm0AnaYJM0KNyxUriQz3JhiUlMaLzIfy8HDbLs1IqIxjl z1ncghsauuEioAEvBfhCUVuPAxyzoG3SoyATr+Iec+fC/fsqmltj76+JJSYbP8xY57vq 6R3w== X-Gm-Message-State: ALoCoQll+em2jWiAslrAaBkItohbd+G3/ZTD8Sf3CjggToqQvmXBUXDW4dXeYne1DjSYvyN3QZ4c X-Received: by 10.194.175.104 with SMTP id bz8mr7855956wjc.42.1442587705951; Fri, 18 Sep 2015 07:48:25 -0700 (PDT) Received: from [192.168.0.22] ([90.212.179.178]) by smtp.googlemail.com with ESMTPSA id s16sm15909006wik.13.2015.09.18.07.48.24 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 18 Sep 2015 07:48:25 -0700 (PDT) Message-ID: <55FC2437.2060303@intel.com> Date: Fri, 18 Sep 2015 15:48:23 +0100 From: Michael Wood User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.8.0 MIME-Version: 1.0 To: toaster@yoctoproject.org References: <1442237461-19173-1-git-send-email-cristian.iorga@intel.com> In-Reply-To: <1442237461-19173-1-git-send-email-cristian.iorga@intel.com> Subject: Re: [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: Fri, 18 Sep 2015 14:48:28 -0000 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Thanks. Submitted upstream. On 14/09/15 14:31, Cristian Iorga wrote: > 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 >