Merge pull request #455 from felixbuenemann/fix-bootstrap-echo

Use printf instead of non-portable echo -n in bootstrap.sh
This commit is contained in:
John Cupitt 2016-05-26 23:07:09 +01:00
commit c077be231c
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