From 317bc24cd6223940c750defe2dc0c8206146e5c1 Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Wed, 11 Mar 2009 20:16:05 +0000 Subject: [PATCH] Unbreak the build. Dunno, why it did not fail on mingw :( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66692 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Makefile | 2 +- tools/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Transforms/Makefile b/lib/Transforms/Makefile index 32ac9fc911e..bf270831083 100644 --- a/lib/Transforms/Makefile +++ b/lib/Transforms/Makefile @@ -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 diff --git a/tools/Makefile b/tools/Makefile index 756d7d58c3c..e7b21ab497d 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -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 -- 2.34.1