summaryrefslogtreecommitdiff
path: root/Makefile.config.in
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-04-12 02:21:38 +0000
committerChris Lattner <sabre@nondot.org>2010-04-12 02:21:38 +0000
commit17e8b7fbde5175c27c734f905959ebfae1e317b4 (patch)
tree1fb8b3b989f1707987a6af74bc9a649a78861ae5 /Makefile.config.in
parentac3b9cdf151264091bc92a87adeafc665bf183a4 (diff)
downloadllvm-17e8b7fbde5175c27c734f905959ebfae1e317b4.tar.gz
llvm-17e8b7fbde5175c27c734f905959ebfae1e317b4.tar.bz2
llvm-17e8b7fbde5175c27c734f905959ebfae1e317b4.tar.xz
whether we enable dylibs or not depends on the host, not the target.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101007 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r--Makefile.config.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.config.in b/Makefile.config.in
index 7c59e5f3f4..d88ec4a287 100644
--- a/Makefile.config.in
+++ b/Makefile.config.in
@@ -323,7 +323,7 @@ CXX_INCLUDE_64BIT_DIR = @CXX_INCLUDE_64BIT_DIR@
# TARGET_HAS_DYNAMIC_LIBS - This is set if the target supports dynamic linking
# .dylib or .so files.
-ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW Minix))
+ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW Minix))
TARGET_HAS_DYNAMIC_LIBS := 1
endif