[cfe-commits] r98492 - /cfe/trunk/tools/Makefile

Anton Korobeynikov asl at math.spbu.ru
Sun Mar 14 05:55:35 PDT 2010


Author: asl
Date: Sun Mar 14 07:55:35 2010
New Revision: 98492

URL: http://llvm.org/viewvc/llvm-project?rev=98492&view=rev
Log:
Fix thinko and enable clang build on mingw again (hopefully)

Modified:
    cfe/trunk/tools/Makefile

Modified: cfe/trunk/tools/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/Makefile?rev=98492&r1=98491&r2=98492&view=diff
==============================================================================
--- cfe/trunk/tools/Makefile (original)
+++ cfe/trunk/tools/Makefile Sun Mar 14 07:55:35 2010
@@ -13,8 +13,7 @@
 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





More information about the cfe-commits mailing list