diff options
author | Cristian Iorga <cristian.iorga@intel.com> | 2015-09-18 15:46:28 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-23 22:44:28 +0100 |
commit | d3675cca419946cc19b3f280446fe1f656f11902 (patch) | |
tree | bb381740f92280490b14d3b9b5d77932892fdd36 | |
parent | 74d67be7a4b591fab2278f7c184f282d11620c62 (diff) | |
download | bitbake-d3675cca419946cc19b3f280446fe1f656f11902.zip |
toaster: start script warning text formatting small improvement
Add a carriage return to build environment warning message to
avoid it being mixed up with shell prompt.
Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | bin/toaster | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/toaster b/bin/toaster index 411ce2c3..ac278269 100755 --- a/bin/toaster +++ b/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 |