autoconf-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] Fix 'config.status --recheck' when config arguments are given.


From: Malcolm Purvis
Subject: [PATCH] Fix 'config.status --recheck' when config arguments are given.
Date: Wed, 27 Dec 2006 14:46:42 +1100
User-agent: Gnus/5.110006 (No Gnus v0.6) XEmacs/21.5-b27 (darwin)

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  <address@hidden>

        * 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 <address@hidden>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]