diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2010-03-14 12:55:35 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2010-03-14 12:55:35 +0000 |
commit | 51f4c940d5fa5183fafac68d6be1ba3cf974934b (patch) | |
tree | 4af57866c781ecf3489f9a300ab5aa72b6d5d9a5 | |
parent | c3cde071b41ca83e43de8dc2abe9a99f77a9ebb8 (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/Makefile | 3 |
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 |