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
This commit is contained in:
Anton Korobeynikov 2009-03-11 20:16:05 +00:00
parent 4dc2b39bf8
commit 317bc24cd6
2 changed files with 2 additions and 2 deletions

View 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

View 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