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

Marvin Scholz git at videolan.org
Thu Jun 18 18:31:56 CEST 2020


vlc/vlc-3.0 | branch: master | Marvin Scholz <epirat07 at gmail.com> | Wed Jun  5 21:38:43 2019 +0200| [62f68754de6e116c4b8c4fb2c1fbddf402b118da] | committer: Steve Lhomme

contrib/bootstrap: Replace echo -n with printf

(cherry picked from commit 4453a209cf2b7c27dfe37996dc2d307faa53a19f)
Signed-off-by: Steve Lhomme <robux4 at ycbcr.xyz>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=62f68754de6e116c4b8c4fb2c1fbddf402b118da
---

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

diff --git a/contrib/bootstrap b/contrib/bootstrap
index 97f267cd59..5a733a7abf 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