[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Small bug in status.m4?
From: |
Paul Eggert |
Subject: |
Re: Small bug in status.m4? |
Date: |
Wed, 13 Apr 2005 10:01:52 -0700 |
User-agent: |
Gnus/5.1006 (Gnus v5.10.6) Emacs/21.4 (gnu/linux) |
Gregorio Guidi <address@hidden> writes:
> Probably the code should consider configure.ac alongside configure.in in
> status.m4, too.
Thanks for reporting that. I installed this:
2005-04-13 Paul Eggert <address@hidden>
* lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Look for configure.ac
as well as configure.in. Problem reported by Gregorio Guidi.
--- status.m4.~1.50.~ 2005-03-22 16:27:10 -0800
+++ status.m4 2005-04-13 09:56:51 -0700
@@ -1142,7 +1142,8 @@ if test "$no_recursion" != yes; then
ac_sub_configure="$SHELL '$ac_srcdir/configure.gnu'"
elif test -f $ac_srcdir/configure; then
ac_sub_configure="$SHELL '$ac_srcdir/configure'"
- elif test -f $ac_srcdir/configure.in; then
+ elif test -f $ac_srcdir/configure.ac ||
+ test -f $ac_srcdir/configure.in; then
ac_sub_configure=$ac_configure
else
AC_MSG_WARN([no configuration information is in $ac_dir])
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Re: Small bug in status.m4?,
Paul Eggert <=