commit ebf6228f218ab2b56eb40bc9a42c06c8ec70c7e2
parent 4a1db96db80baa76303c3fae8f90c7485ff9170e
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Sun, 26 Dec 2021 11:53:30 +0100
tweaks: add some feedback to the autogen.sh script, to ease the wait
Diffstat:
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/autogen.sh b/autogen.sh
@@ -36,19 +36,26 @@ fi
cd gnulib >/dev/null || exit 1
curr_hash=$(git log -1 --format=%H)
if [ "${gnulib_hash}" != "${curr_hash}" ]; then
+ echo "Pulling..."
git pull
- git checkout -f ${gnulib_hash}
+ git checkout --force ${gnulib_hash}
fi
cd .. >/dev/null || exit 1
+echo "Autopoint..."
autopoint --force
rm -rf lib
-./gnulib/gnulib-tool \
- --import \
- ${modules}
+echo "Gnulib-tool..."
+./gnulib/gnulib-tool --import ${modules}
+echo
+echo "Aclocal..."
aclocal -I m4
+echo "Autoconf..."
autoconf
+echo "Autoheader..."
autoheader
+echo "Automake..."
automake --add-missing
+echo "Done."