diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-11-29 08:58:11 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-11-29 08:58:11 +0000 |
commit | 0ae59f4c07a85ba8455c8119534c06c78a62614a (patch) | |
tree | dc693c278c831aa3fa8ca10d86db44a83da51b23 | |
parent | 86c817e9d446aa7bf6e91170be22249884fefd0d (diff) |
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
-rw-r--r-- | tools/Makefile | 2 |
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 |