vlc | branch: master | Marvin Scholz <[email protected]> | 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" _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
