[vlc-commits] contrib/bootstrap: Replace echo -n with printf

Marvin Scholz git at videolan.org
Wed Jun 12 21:09:41 CEST 2019


vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Wed Jun  5 21:38:43 2019 +0200| [4453a209cf2b7c27dfe37996dc2d307faa53a19f] | committer: Marvin Scholz

contrib/bootstrap: Replace echo -n with printf

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4453a209cf2b7c27dfe37996dc2d307faa53a19f
---

 contrib/bootstrap | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/contrib/bootstrap b/contrib/bootstrap
index f260f371b7..654b8a8d4a 100755
--- a/contrib/bootstrap
+++ b/contrib/bootstrap
@@ -124,7 +124,7 @@ fi
 
 if test -z "$BUILD"
 then
-	echo -n "Guessing build system... "
+	printf "Guessing build system... "
 	BUILD="`${CC:-cc} -dumpmachine | sed s/windows-gnu/mingw32/`"
 	if test -z "$BUILD"; then
 		echo "FAIL!"
@@ -135,12 +135,12 @@ fi
 
 if test -z "$HOST"
 then
-	echo -n "Guessing host system...  "
+	printf "Guessing host system...  "
 	HOST="$BUILD"
 	echo "$HOST"
 fi
 
-echo -n "Packages licensing...    "
+printf "Packages licensing...    "
 if test -n "$GPL"
 then
 	if test -n "$GNUV3"



More information about the vlc-commits mailing list