aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Makefile
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2010-04-15 19:51:42 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2010-04-15 19:51:42 +0000
commit764f62ba601ed80710a05565b61c6dd4fbb73eea (patch)
treeeb095222b7b0d75971077aebc90d6e2de064220c /lib/Transforms/Makefile
parent8cf16167a057f817c8947da8c82e904186613200 (diff)
Revert r100896 and around - this breaks the only mingw32 buildbot we have.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101387 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Makefile')
-rw-r--r--lib/Transforms/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Makefile b/lib/Transforms/Makefile
index 648d10f7b0..e527be25de 100644
--- a/lib/Transforms/Makefile
+++ b/lib/Transforms/Makefile
@@ -12,8 +12,8 @@ PARALLEL_DIRS = Utils Instrumentation Scalar InstCombine IPO Hello
include $(LEVEL)/Makefile.config
-# Some targets don't support plugins
-ifdef $(TARGET_HAS_DYNAMIC_LIBS)
+# No support for plugins on windows targets
+ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW Minix))
PARALLEL_DIRS := $(filter-out Hello, $(PARALLEL_DIRS))
endif