aboutsummaryrefslogtreecommitdiffstats
path: root/autoconf
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-09-21 17:12:35 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-09-21 17:12:35 +0000
commitc2186e23b6484bf5a35419587bde76d6b40f0452 (patch)
tree334954c78e4e9e70b738bd5ef5d242f5cb0cb238 /autoconf
parent91b538024a6fcecab80f422cb1fec52825faa44c (diff)
downloadexternal_llvm-c2186e23b6484bf5a35419587bde76d6b40f0452.zip
external_llvm-c2186e23b6484bf5a35419587bde76d6b40f0452.tar.gz
external_llvm-c2186e23b6484bf5a35419587bde76d6b40f0452.tar.bz2
Don't attempt to (illegally) configure a subdir if we don't recognize it.
Instead just create a warning message that says the directory cannot be configured because it isn't recognized. This also gets rid of a bunch of warning messages from the auto* tools. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16463 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac4
1 files changed, 3 insertions, 1 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 55e0329..0645baa 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -31,7 +31,9 @@ do
"Java") AC_CONFIG_SUBDIRS([projects/Java]) ;;
"llvm-tv") AC_CONFIG_SUBDIRS([projects/llvm-tv]) ;;
"llvm-fefw") AC_CONFIG_SUBDIRS([projects/llvm-fefw]) ;;
- *) AC_CONFIG_SUBDIRS(${i}) ;;
+ *)
+ AC_MSG_WARN([Unknown projects (${i})won't be configured automatically])
+ ;;
esac
fi
done