1
1

tweaks: add some feedback to the autogen.sh script, to ease the wait

Этот коммит содержится в:
Benno Schulenberg 2021-12-26 11:53:30 +01:00
родитель 4a1db96db8
Коммит ebf6228f21

Просмотреть файл

@ -36,19 +36,26 @@ fi
cd gnulib >/dev/null || exit 1 cd gnulib >/dev/null || exit 1
curr_hash=$(git log -1 --format=%H) curr_hash=$(git log -1 --format=%H)
if [ "${gnulib_hash}" != "${curr_hash}" ]; then if [ "${gnulib_hash}" != "${curr_hash}" ]; then
echo "Pulling..."
git pull git pull
git checkout -f ${gnulib_hash} git checkout --force ${gnulib_hash}
fi fi
cd .. >/dev/null || exit 1 cd .. >/dev/null || exit 1
echo "Autopoint..."
autopoint --force autopoint --force
rm -rf lib rm -rf lib
./gnulib/gnulib-tool \ echo "Gnulib-tool..."
--import \ ./gnulib/gnulib-tool --import ${modules}
${modules} echo
echo "Aclocal..."
aclocal -I m4 aclocal -I m4
echo "Autoconf..."
autoconf autoconf
echo "Autoheader..."
autoheader autoheader
echo "Automake..."
automake --add-missing automake --add-missing
echo "Done."