1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

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

llvm-svn: 10436
This commit is contained in:
John Criswell 2003-12-12 20:09:33 +00:00
parent 93c209e4ac
commit 5c3d9dc749

View File

@ -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