dependencies: remove useless newlines
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 23 Mar 2013 22:26:42 +0000 (22:26 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 24 Mar 2013 12:51:32 +0000 (13:51 +0100)
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
support/dependencies/dependencies.sh

index cd3c839b629428ae64d2a2f7b581a77bea6691cf..9d06a0d21ab19fd7866812683f33bdd86d02faf1 100755 (executable)
@@ -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