From 8afa96ff79d4df764a47484f2c4f6c691ab9a435 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Bu=CC=88nemann?= Date: Thu, 26 May 2016 23:15:15 +0200 Subject: [PATCH] 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". --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 0754e3b8..455bdac9 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -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