From ebf6228f218ab2b56eb40bc9a42c06c8ec70c7e2 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sun, 26 Dec 2021 11:53:30 +0100 Subject: [PATCH] tweaks: add some feedback to the autogen.sh script, to ease the wait --- autogen.sh | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/autogen.sh b/autogen.sh index e99714ad..40ad9c0e 100755 --- 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."