diff options
author | John Criswell <criswell@uiuc.edu> | 2010-03-25 13:59:09 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2010-03-25 13:59:09 +0000 |
commit | 52c02866ba6d40dd6616e673d96b5c0e401fc557 (patch) | |
tree | 22b12d9ac817f862aaa359b5e39a2bc6660bd85f /autoconf/configure.ac | |
parent | 8fb040308c25829ad16baaffe4f3c6ba4ac462f6 (diff) |
Fixed spurious warning problem noticed by Daniel Dunbar. The configure script
now configures prerequisite projects individually but also ignores them in the
big project switch statement to avoid the incorrect warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99506 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf/configure.ac')
-rw-r--r-- | autoconf/configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 56d716bb8d..04c0886ab7 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -110,6 +110,11 @@ do llvm-tv) AC_CONFIG_SUBDIRS([projects/llvm-tv]) ;; safecode) AC_CONFIG_SUBDIRS([projects/safecode]) ;; llvm-kernel) AC_CONFIG_SUBDIRS([projects/llvm-kernel]) ;; + llvm-gcc) ;; + test-suite) ;; + llvm-test) ;; + poolalloc) ;; + llvm-poolalloc) ;; *) AC_MSG_WARN([Unknown project (${i}) won't be configured automatically]) ;; |