From: Anton Korobeynikov Date: Sun, 14 Mar 2010 12:55:35 +0000 (+0000) Subject: Fix thinko and enable clang build on mingw again (hopefully) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=51f4c940d5fa5183fafac68d6be1ba3cf974934b;p=clang 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 --- 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