Fix autoreconf invocation.
authorBruno Haible <bruno@clisp.org>
Thu, 25 Aug 2005 12:11:12 +0000 (12:11 +0000)
committerBruno Haible <bruno@clisp.org>
Thu, 25 Aug 2005 12:11:12 +0000 (12:11 +0000)
ChangeLog
gnulib-tool

index 142063a..021f2f5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2005-08-24  Bruno Haible  <bruno@clisp.org>
 
+       * gnulib-tool (func_create_megatestdir): Call autoreconf without the
+       option --force, because --force causes the aclocal.m4 of each
+       subdirectory to be newer than the corresponding config.h.in.
+
+2005-08-24  Bruno Haible  <bruno@clisp.org>
+
        * gnulib-tool: Add support for the --aux-dir option to
        --create-testdir, --create-megatestdir, --test, --megatest.
        (func_create_testdir, func_create_megatestdir): Optionally emit a
index af38d5a..a146078 100755 (executable)
@@ -22,7 +22,7 @@
 
 progname=$0
 package=gnulib
-cvsdatestamp='$Date: 2005-08-25 12:08:21 $'
+cvsdatestamp='$Date: 2005-08-25 12:11:12 $'
 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
 
@@ -934,8 +934,8 @@ func_create_megatestdir ()
 
   # Create autogenerated files.
   (cd "$megatestdir"
-   echo "executing ${AUTORECONF} --force --install"
-   ${AUTORECONF} --force --install
+   echo "executing ${AUTORECONF} --install"
+   ${AUTORECONF} --install
   )
 }