config.status error with latest CVS ...

2002-01-09 Thread Marc G. Fournier


After doing:

gmake distclean
cvs update .
./buildconf

area902# ./buildconf
rebuilding srclib/apr/configure
buildconf: checking installation...
buildconf: autoconf version 2.52 (ok)
buildconf: libtool version 1.3.4 (ok)
Copying libtool helper files ...
Creating include/arch/unix/apr_private.h.in ...
autoheader: include/arch/unix/apr_private.h.in is unchanged
Creating configure ...
rebuilding srclib/apr-util/configure
Creating include/private/apu_config.h ...
autoheader: include/private/apu_config.h.in is unchanged
Creating configure ...
Invoking xml/expat/buildconf.sh ...
Incorporating /usr/local/share/aclocal/libtool.m4 into aclocal.m4 ...
Copying libtool helper files ...
Putting files in AC_CONFIG_AUX_DIR, `conftools'.
Creating config.h.in ...
autoheader: config.h.in is unchanged
Creating configure ...
rebuilding srclib/pcre/configure
rebuilding include/ap_config_auto.h.in
rebuilding configure
area902#

A configure is showing:

creating test/Makefile
config.status: creating support/apxs
config.status: creating support/apachectl
config.status: creating support/dbmmanage
config.status: creating support/envvars-std
config.status: creating support/log_server_status
config.status: creating support/logresolve.pl
config.status: creating support/phf_abuse_log.cgi
config.status: creating support/split-logfile
config.status: creating build/rules.mk
config.status: creating include/ap_config_auto.h
./config.status: 773: Syntax error: done unexpected (expecting ))

Which, looking at config.status, appears to be totally benign?

for ac_file in : $CONFIG_COMMANDS; do test x$ac_file = x:  continue
  ac_dest=`echo $ac_file | sed 's,:.*,,'`
  ac_source=`echo $ac_file | sed 's,[^:]*:,,'`

  case $ac_dest in
  esac
done





Re: config.status error with latest CVS ...

2002-01-09 Thread Aaron Bannert

What platform is this? Also, what version of autoconf?

-aaron



On Wed, Jan 09, 2002 at 05:08:14PM -0400, Marc G. Fournier wrote:
 
 After doing:
 
   gmake distclean
   cvs update .
   ./buildconf



Re: config.status error with latest CVS ...

2002-01-09 Thread Marc G. Fournier


Correct, but in this case, I had upgraded to 2.52 from ports, figuing that
it might fix the compile error I pointed out in a subsequent email :(

On Wed, 9 Jan 2002, Justin Erenkrantz wrote:

 On Wed, Jan 09, 2002 at 05:08:14PM -0400, Marc G. Fournier wrote:
  ./config.status: 773: Syntax error: done unexpected (expecting ))
 
  Which, looking at config.status, appears to be totally benign?
 
  for ac_file in : $CONFIG_COMMANDS; do test x$ac_file = x:  continue
ac_dest=`echo $ac_file | sed 's,:.*,,'`
ac_source=`echo $ac_file | sed 's,[^:]*:,,'`
 
case $ac_dest in
esac
  done

 [ Second time in a week this has popped up.  I'm guess this is since
 FreeBSD upgraded their autoconf to 2.52. ]

 It's due to a bug in autoconf - they generate non-compliant /bin/sh
 scripts.  Not much we can do.  Feel free to send a patch/bug report
 to the GNU autoconf people.

 In our case, it is usually benign since it is at the end of
 config.status.  -- justin