[llvm-commits] CVS: llvm/autoconf/configure.ac

John Criswell criswell at cs.uiuc.edu
Fri Dec 12 14:10:01 PST 2003


Changes in directory llvm/autoconf:

configure.ac updated: 1.60 -> 1.61

---
Log message:

Don't configure directories that don't have a configure script (i.e Stacker).



---
Diffs of the changes:  (+1 -1)

Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.60 llvm/autoconf/configure.ac:1.61
--- llvm/autoconf/configure.ac:1.60	Fri Dec  5 13:28:58 2003
+++ llvm/autoconf/configure.ac	Fri Dec 12 14:09:33 2003
@@ -37,7 +37,7 @@
 do
   if test ${i} != "CVS"
   then
-    if test -d ${srcdir}/projects/${i}
+    if test -f ${srcdir}/projects/${i}/configure
     then
       AC_CONFIG_SUBDIRS(projects/${i})
     fi





More information about the llvm-commits mailing list