summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2010-11-29 08:58:11 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2010-11-29 08:58:11 +0000
commit0ae59f4c07a85ba8455c8119534c06c78a62614a (patch)
treedc693c278c831aa3fa8ca10d86db44a83da51b23 /tools/Makefile
parent86c817e9d446aa7bf6e91170be22249884fefd0d (diff)
downloadllvm-0ae59f4c07a85ba8455c8119534c06c78a62614a.tar.gz
llvm-0ae59f4c07a85ba8455c8119534c06c78a62614a.tar.bz2
llvm-0ae59f4c07a85ba8455c8119534c06c78a62614a.tar.xz
tools/Makefile: Don't look into $(TARGET_OS), but $(HOST_OS), to inspect availability of loadable module!
The last commit made run.build.step.test_llvm_1 to fail. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120283 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 8a6751ab87..35f6a8b97c 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -60,7 +60,7 @@ endif
# On Win32, loadable modules can be built with ENABLE_SHARED.
ifneq ($(ENABLE_SHARED),1)
- ifneq (,$(filter $(TARGET_OS), Cygwin MingW))
+ ifneq (,$(filter $(HOST_OS), Cygwin MingW))
PARALLEL_DIRS := $(filter-out bugpoint-passes, \
$(PARALLEL_DIRS))
endif