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 142063af7e444aee74f4211a01fdf9b6584209c6..021f2f5eabb971b1a13c1615bbb38833b2d0b2b3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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
index af38d5ac85f15a3e136be0989dfddc70abc9e8c2..a146078f248ad34b4f80c10f005d121324c80241 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
   )
 }