From: Bruno Haible Date: Sun, 11 Jun 2017 23:38:57 +0000 (+0200) Subject: gnulib-tool: Clean up after autotools. X-Git-Tag: v1.0~6100 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=87d14d357f694338acdb8745cea7304ff623ce47;p=gnulib.git gnulib-tool: Clean up after autotools. * gnulib-tool (func_create_testdir, func_create_megatestdir): Remove useless directory left over by the Autotools. --- diff --git a/ChangeLog b/ChangeLog index 017ec4b1a7..4917e70d21 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2017-06-11 Bruno Haible + + gnulib-tool: Clean up after autotools. + * gnulib-tool (func_create_testdir, func_create_megatestdir): Remove + useless directory left over by the Autotools. + 2017-06-11 Paul Eggert getopt-posix: port to glibc 2.25.90 diff --git a/gnulib-tool b/gnulib-tool index c78e68b813..48c15b3692 100755 --- a/gnulib-tool +++ b/gnulib-tool @@ -6479,6 +6479,7 @@ func_create_testdir () func_execute_command ${AUTOCONF} || func_exit 1 func_execute_command ${AUTOHEADER} || func_exit 1 func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1 + rm -rf autom4te.cache ) || func_exit 1 if $inctests && ! $single_configure; then # Create autogenerated files. @@ -6500,6 +6501,7 @@ func_create_testdir () func_execute_command ${AUTOCONF} || func_exit 1 func_execute_command ${AUTOHEADER} || func_exit 1 func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1 + rm -rf autom4te.cache ) || func_exit 1 fi # Need to run configure and make once, to create built files that are to be @@ -6659,6 +6661,7 @@ func_create_megatestdir () func_execute_command mkdir build-aux func_execute_command ${AUTOCONF} || func_exit 1 func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1 + rm -rf autom4te.cache ) || func_exit 1 }