A typo introduced in 2.60 prevents 'config.status --recheck' from working if
arguments are given to configure. Eg, if configure is run as:
$ ./configure --prefix=foo
Then the failure is:
$ config.status --recheck
[...]
./configure--prefix=foo: No such file or directory
This patch restores the missing space.
Malcolm
ChangeLog addition:
2006-12-27 Malcolm Purvis <[EMAIL PROTECTED]>
* lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix typo that
prevented 'config.status --recheck' when arguments are given to
configure.
autoconf-misc source patch:
Diff command: cvs -q diff -u
Files affected: lib/autoconf/status.m4
===================================================================
RCS
Index: lib/autoconf/status.m4
===================================================================
RCS file: /sources/autoconf/autoconf/lib/autoconf/status.m4,v
retrieving revision 1.125
diff -u -r1.125 status.m4
--- lib/autoconf/status.m4 18 Dec 2006 20:10:05 -0000 1.125
+++ lib/autoconf/status.m4 27 Dec 2006 03:37:21 -0000
@@ -1407,7 +1407,7 @@
dnl Check this before opening the log, to avoid a bug on MinGW,
dnl which prohibits the recursive instance from truncating an open log.
if \$ac_cs_recheck; then
- set X '$SHELL' '$[0]'$ac_configure_args \$ac_configure_extra_args
--no-create --no-recursion
+ set X '$SHELL' '$[0]' $ac_configure_args \$ac_configure_extra_args
--no-create --no-recursion
shift
\AS_ECHO(["running CONFIG_SHELL=$SHELL \$[*]"]) >&AS_MESSAGE_FD
CONFIG_SHELL='$SHELL'
--
Malcolm Purvis <[EMAIL PROTECTED]>