Unbreak the build. Dunno, why it did not fail on mingw :(
authorAnton Korobeynikov <asl@math.spbu.ru>
Wed, 11 Mar 2009 20:16:05 +0000 (20:16 +0000)
committerAnton Korobeynikov <asl@math.spbu.ru>
Wed, 11 Mar 2009 20:16:05 +0000 (20:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66692 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Makefile
tools/Makefile

index 32ac9fc911e18502e8e3157f6ac0743c651e7d32..bf270831083b27b6492131d948ded89ee2c16e0f 100644 (file)
@@ -12,7 +12,7 @@ PARALLEL_DIRS = Utils Instrumentation Scalar IPO Hello
 
 # No support for plugins on windows targets
 ifeq ($(OS), $(filter $(OS), Cygwin MingW))
-  PARALLEL_DIRS := $(filter-out Hello, $(DIRS))
+  PARALLEL_DIRS = $(filter-out Hello, $(PARALLEL_DIRS))
 endif
 
 include $(LEVEL)/Makefile.common
index 756d7d58c3c783d27135305f61f89d3b7ab3750f..e7b21ab497d6f09380932dec33d8e79bc7971c9a 100644 (file)
@@ -33,7 +33,7 @@ endif
 
 # No support for lto / gold on windows targets
 ifeq ($(OS), $(filter $(OS), Cygwin MingW))
-  DIRS := $(filter-out lto gold, $(DIRS))
+  DIRS = $(filter-out lto gold, $(DIRS))
 endif
 
 include $(LEVEL)/Makefile.common