summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Orton <joe@manyfish.uk>2021-03-05 18:04:43 +0000
committerJoe Orton <joe@manyfish.uk>2021-03-05 18:04:43 +0000
commit6f65349e3048a4599c15e3ca0655deea9f593f84 (patch)
tree63f5b71de2f4ad6f6e4014bb12868ba3618b7c00
parent4fac395fd5f59b274c59d45cb955141077be7f32 (diff)
downloadneon-git-6f65349e3048a4599c15e3ca0655deea9f593f84.tar.gz
Avoid use of non-POSIX echo -n. (closes #44)
-rwxr-xr-xautogen.sh10
1 files 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