autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

current autoreconf assumes configure.ac?


From: Assar Westerlund
Subject: current autoreconf assumes configure.ac?
Date: 25 Jan 2001 16:26:57 +0100
User-agent: Gnus/5.070098 (Pterodactyl Gnus v0.98) Emacs/20.6

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

[Prev in Thread] Current Thread [Next in Thread]