aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2015-09-02 13:30:48 -0700
committerDan Willemsen <dwillemsen@google.com>2015-09-04 03:11:08 +0000
commitf1f1bc38c2ef56b0fd16fddd4c202453dd9d8120 (patch)
tree4f53344d9daf3db11243f6dce6b50a0e7deb98a6
parent05c10489f02137c99b9e927fe2d5a7165e94dc39 (diff)
downloadclang-f1f1bc38c2ef56b0fd16fddd4c202453dd9d8120.tar.gz
Remove last HOST_OS check
Now that LOCAL_MODULE_HOST_OS is enforced. Bug: 23566667 Change-Id: I88530afdc6d11f600c859841f52a0f17a76a55b6
-rw-r--r--shared_clang.mk7
1 files changed, 1 insertions, 6 deletions
diff --git a/shared_clang.mk b/shared_clang.mk
index 8b81d168d3..2580e07626 100644
--- a/shared_clang.mk
+++ b/shared_clang.mk
@@ -46,16 +46,11 @@ include $(CLANG_HOST_BUILD_MK)
# have prebuilts for windows.
ifneq (true,$(FORCE_BUILD_LLVM_COMPONENTS))
LOCAL_MODULE_HOST_OS := windows
-# BUILD_HOST_SHARED_LIBRARY can be moved out once
-# LOCAL_MODULE_HOST_OS is enforced.
-ifeq ($(HOST_OS),windows)
-include $(BUILD_HOST_SHARED_LIBRARY)
-endif
else
LOCAL_MODULE_HOST_OS := darwin linux windows
-include $(BUILD_HOST_SHARED_LIBRARY)
endif
+include $(BUILD_HOST_SHARED_LIBRARY)
# Don't build the library unless forced to.
ifeq (true,$(FORCE_BUILD_LLVM_COMPONENTS))