Gregorio Guidi <[EMAIL PROTECTED]> 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 <[EMAIL PROTECTED]>
* 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])