]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Get rid of autom4te.cache directories, as far as possible.
authorBruno Haible <bruno@clisp.org>
Sat, 15 Jul 2017 19:12:42 +0000 (21:12 +0200)
committerBruno Haible <bruno@clisp.org>
Sat, 15 Jul 2017 19:43:46 +0000 (21:43 +0200)
* autogen.sh: Remove autom4te.cache directories after running autoconf,
autoheader, automake.

autogen.sh

index a2f761a4277491c34a107ae4b50e34661c0c0612..8051480220424248738e82cbc8c0b9e431105c13 100755 (executable)
@@ -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'."