From: Thomas Petazzoni Date: Sat, 23 Mar 2013 22:26:42 +0000 (+0000) Subject: dependencies: remove useless newlines X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3a8dbba84d39ac20dc61ce3bc9180cfb164e4cc2;p=buildroot.git dependencies: remove useless newlines Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh index cd3c839b62..9d06a0d21a 100755 --- a/support/dependencies/dependencies.sh +++ b/support/dependencies/dependencies.sh @@ -133,11 +133,9 @@ fi; # Check that a few mandatory programs are installed for prog in patch perl tar wget cpio python unzip rsync ${DL_TOOLS} ; do if ! which $prog > /dev/null ; then - /bin/echo -e "\nYou must install '$prog' on your build machine"; + /bin/echo -e "You must install '$prog' on your build machine"; if test $prog = "svn" ; then - /bin/echo -e "svn is usually part of the subversion package in your distribution\n" - else - /bin/echo -e "\n" + /bin/echo -e "svn is usually part of the subversion package in your distribution" fi exit 1; fi