From: Bruno Haible Date: Sat, 15 Jul 2017 19:12:42 +0000 (+0200) Subject: Get rid of autom4te.cache directories, as far as possible. X-Git-Tag: v0.20~456 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=488bf1c3be5ebe66520f352bfb8d99917878ab42;p=thirdparty%2Fgettext.git Get rid of autom4te.cache directories, as far as possible. * autogen.sh: Remove autom4te.cache directories after running autoconf, autoheader, automake. --- diff --git a/autogen.sh b/autogen.sh index a2f761a42..805148022 100755 --- a/autogen.sh +++ b/autogen.sh @@ -445,6 +445,7 @@ aclocal -I ../../m4 -I ../m4 -I gnulib-m4 \ && autoheader \ && touch ChangeLog config.h.in \ && automake --add-missing --copy \ + && rm -rf autom4te.cache \ || exit $? cd "$dir0" @@ -455,6 +456,7 @@ aclocal -I m4 -I ../m4 -I gnulib-m4 \ && autoheader \ && touch ChangeLog intl/ChangeLog config.h.in \ && automake --add-missing --copy \ + && rm -rf autom4te.cache \ || exit $? cd "$dir0" @@ -464,6 +466,7 @@ aclocal -I ../../gettext-runtime/m4 -I ../../m4 \ && autoconf \ && touch ChangeLog \ && automake --add-missing --copy \ + && rm -rf autom4te.cache \ || exit $? cd "$dir0" @@ -498,6 +501,7 @@ aclocal -I m4 -I ../gettext-runtime/m4 -I ../m4 -I gnulib-m4 -I libgrep/gnulib-m && autoheader && touch ChangeLog config.h.in \ && { test -d intl || mkdir intl; } \ && automake --add-missing --copy \ + && rm -rf autom4te.cache \ || exit $? cd "$dir0" @@ -505,6 +509,7 @@ aclocal -I m4 \ && autoconf \ && touch ChangeLog \ && automake --add-missing --copy \ + && rm -rf autom4te.cache gettext-runtime/autom4te.cache gettext-tools/autom4te.cache \ || exit $? echo "$0: done. Now you can run './configure'."