Use printf instead of echo -n in bootstrap.sh

The behavior of `echo -n` is not portable and some implementations will
just prtint the literal string "-n".
This commit is contained in:
Felix Bünemann 2016-05-26 23:15:15 +02:00
parent ac2ce4228b
commit 8afa96ff79
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ fi
gtkdocize --copy --docdir doc --flavour no-tmpl || exit 1
# some systems need libtoolize, some glibtoolize ... how annoying
echo -n "testing for glibtoolize ... "
printf "testing for glibtoolize ... "
if glibtoolize --version >/dev/null 2>&1; then
LIBTOOLIZE=glibtoolize
echo using glibtoolize