changeset 6110:139428fd3d07

Fix autoreconf invocation.
author Bruno Haible <bruno@clisp.org>
date Thu, 25 Aug 2005 12:11:12 +0000
parents a52f596fdf00
children 4bc400780d6a
files ChangeLog gnulib-tool
diffstat 2 files changed, 9 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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
--- a/gnulib-tool
+++ b/gnulib-tool
@@ -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 @@
 
   # Create autogenerated files.
   (cd "$megatestdir"
-   echo "executing ${AUTORECONF} --force --install"
-   ${AUTORECONF} --force --install
+   echo "executing ${AUTORECONF} --install"
+   ${AUTORECONF} --install
   )
 }