From 38a668a9aa3d7f291410a645f0876eb7a91b75fc Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 28 Dec 2006 23:20:18 +0000 Subject: [PATCH] * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Insert a space before "$ac_configure_args" to prevent a 'config.status --recheck' failure if ac_configure_args doesn't contain a leading space. This works around a problem with the XEmacs configure.ac, which uses the (undocumented) ac_configure_args variable inconsistently with Autoconf. --- ChangeLog | 9 +++++++++ lib/autoconf/status.m4 | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 94cfae32..d66ea034 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2006-12-28 Malcolm Purvis (trivial change) + + * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Insert a + space before "$ac_configure_args" to prevent a 'config.status + --recheck' failure if ac_configure_args doesn't contain a leading + space. This works around a problem with the XEmacs configure.ac, + which uses the (undocumented) ac_configure_args variable + inconsistently with Autoconf. + 2006-12-22 Paul Eggert * lib/autoconf/functions.m4 (AC_FUNC_MKTIME): diff --git a/lib/autoconf/status.m4 b/lib/autoconf/status.m4 index 75e8e912..ab406060 100644 --- a/lib/autoconf/status.m4 +++ b/lib/autoconf/status.m4 @@ -1407,7 +1407,7 @@ cat >>$CONFIG_STATUS <<_ACEOF 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' -- 2.11.4.GIT