aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2010-03-14 12:55:35 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2010-03-14 12:55:35 +0000
commit51f4c940d5fa5183fafac68d6be1ba3cf974934b (patch)
tree4af57866c781ecf3489f9a300ab5aa72b6d5d9a5
parentc3cde071b41ca83e43de8dc2abe9a99f77a9ebb8 (diff)
Fix thinko and enable clang build on mingw again (hopefully)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@98492 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 5a9c67421b..bfd5ad12f9 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -13,8 +13,7 @@ DIRS := driver CIndex c-index-test
include $(LEVEL)/Makefile.config
ifeq ($(OS), $(filter $(OS), Cygwin MingW))
-DIRS := $(filter $(DIRS), CIndex)
-DIRS := $(filter $(DIRS), c-index-test)
+DIRS := $(filter-out CIndex c-index-test, $(DIRS))
endif
include $(LEVEL)/Makefile.common