From 6f65349e3048a4599c15e3ca0655deea9f593f84 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Fri, 5 Mar 2021 18:04:43 +0000 Subject: Avoid use of non-POSIX echo -n. (closes #44) --- autogen.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/autogen.sh b/autogen.sh index 2643313..dbe8caa 100755 --- a/autogen.sh +++ b/autogen.sh @@ -8,21 +8,21 @@ if test ! -f .version; then echo 0.0.0-dev > .version # for the documentation: date +"%e %B %Y" | tr -d '\n' > doc/date.xml - echo -n 0.0.0-dev > doc/version.xml + echo 0.0.0-dev > doc/version.xml fi set -e -echo -n "libtoolize... " +printf "libtoolize... " LIBTOOLIZE=${LIBTOOLIZE:-libtoolize} if ${LIBTOOLIZE} --help | grep -- --install > /dev/null; then ${LIBTOOLIZE} --copy --force --install >/dev/null; else ${LIBTOOLIZE} --copy --force >/dev/null fi -echo -n "aclocal... " +printf "aclocal... " ${ACLOCAL:-aclocal} -I macros -echo -n "autoheader... " +printf "autoheader... " ${AUTOHEADER:-autoheader} -echo -n "autoconf... " +printf "autoconf... " ${AUTOCONF:-autoconf} -Wall echo okay. # remove the autoconf cache -- cgit v1.2.1