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:
parent
ac2ce4228b
commit
8afa96ff79
@ -42,7 +42,7 @@ fi
|
|||||||
gtkdocize --copy --docdir doc --flavour no-tmpl || exit 1
|
gtkdocize --copy --docdir doc --flavour no-tmpl || exit 1
|
||||||
|
|
||||||
# some systems need libtoolize, some glibtoolize ... how annoying
|
# 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
|
if glibtoolize --version >/dev/null 2>&1; then
|
||||||
LIBTOOLIZE=glibtoolize
|
LIBTOOLIZE=glibtoolize
|
||||||
echo using glibtoolize
|
echo using glibtoolize
|
||||||
|
Loading…
Reference in New Issue
Block a user