summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-12-12 20:09:33 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-12-12 20:09:33 +0000
commit9493c97829db775dfb1c8bfef09f13cb8e421f9a (patch)
tree9b45dec724e69fe7d05d3ab348f1574e788f6da1 /autoconf
parent52b62de10063a15dfbcfb8b61504df826c76e03c (diff)
downloadllvm-9493c97829db775dfb1c8bfef09f13cb8e421f9a.tar.gz
llvm-9493c97829db775dfb1c8bfef09f13cb8e421f9a.tar.bz2
llvm-9493c97829db775dfb1c8bfef09f13cb8e421f9a.tar.xz
Don't configure directories that don't have a configure script (i.e Stacker).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10436 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index d1df826dd7..6534ae7c0d 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -37,7 +37,7 @@ for i in `ls ${srcdir}/projects`
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