summaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2013-03-23 22:26:42 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2013-03-24 13:51:32 +0100
commit3a8dbba84d39ac20dc61ce3bc9180cfb164e4cc2 (patch)
tree9081cca39e9037a20bf48a7ba7be871fe1902074 /support
parentd8f9237553e4f839de32eb5e82805017fc758cd9 (diff)
downloadbuildroot-novena-3a8dbba84d39ac20dc61ce3bc9180cfb164e4cc2.tar.gz
buildroot-novena-3a8dbba84d39ac20dc61ce3bc9180cfb164e4cc2.zip
dependencies: remove useless newlines
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'support')
-rwxr-xr-xsupport/dependencies/dependencies.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh
index cd3c839b6..9d06a0d21 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