Revision 1.62 to autoreconf.sh seems to make sure it only searches for
configure.ac and not configure.in.  Please apply the patch below:

/assar

Index: autoreconf.sh
===================================================================
RCS file: /cvs/autoconf/autoreconf.sh,v
retrieving revision 1.63
diff -u -w -u -w -r1.63 autoreconf.sh
--- autoreconf.sh       2001/01/16 10:25:58     1.63
+++ autoreconf.sh       2001/01/25 15:25:24
@@ -298,7 +298,7 @@
 
 # Make a list of directories to process.
 # The xargs grep filters out Cygnus configure.in files.
-find . -name configure.ac -o -name configure.ac -print |
+find . -name configure.ac -o -name configure.in -print |
 xargs grep -l AC_INIT |
 sed 's,/configure\.ac$,,;s,/configure\.in$,,;s,^./,,' |
 while read dir; do

Reply via email to