From: Bruno Haible Date: Sun, 4 Dec 2016 16:12:24 +0000 (+0100) Subject: Always use the newest released copies of files brought in from Automake. X-Git-Tag: v0.20~490 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5bfc8cc0c48b49da406af10df6eceed9fa55973;p=thirdparty%2Fgettext.git Always use the newest released copies of files brought in from Automake. * autogen.sh: Make sure to get new versions of files brought in by automake. --- diff --git a/autogen.sh b/autogen.sh index f1a13a5b2..178371a7d 100755 --- a/autogen.sh +++ b/autogen.sh @@ -432,6 +432,9 @@ if ! test -f gettext-tools/misc/archive.dir.tar; then test $retval -eq 0 || exit $retval fi +## Make sure we get new versions of files brought in by automake. +#(cd build-aux && rm -f ar-lib compile depcomp install-sh mdate-sh missing test-driver) + # Generate configure script in each subdirectories. dir0=`pwd` @@ -498,6 +501,10 @@ aclocal -I m4 -I ../gettext-runtime/m4 -I ../m4 -I gnulib-m4 -I libgrep/gnulib-m || exit $? cd "$dir0" -aclocal -I m4 && autoconf && touch ChangeLog && automake || exit $? +aclocal -I m4 \ + && autoconf \ + && touch ChangeLog \ + && automake --add-missing --copy \ + || exit $? echo "$0: done. Now you can run './configure'."