Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve MacLean <Steve.MacLean@microsoft.com>2020-02-05 00:34:41 +0300
committerGitHub <noreply@github.com>2020-02-05 00:34:41 +0300
commitbac908da4c07fa277bb9403394160000a7aadcea (patch)
treeb60fff9573bf3cb70ce284016496f36d068b5b2e /src/coreclr/crosscomponents.cmake
parent72c7034405f9f265f4c431c770f336e63ed961c0 (diff)
Fix logic to disable mscordbi build (#31745)
Diffstat (limited to 'src/coreclr/crosscomponents.cmake')
-rw-r--r--src/coreclr/crosscomponents.cmake8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/coreclr/crosscomponents.cmake b/src/coreclr/crosscomponents.cmake
index b4769cb59e2..30d53d585df 100644
--- a/src/coreclr/crosscomponents.cmake
+++ b/src/coreclr/crosscomponents.cmake
@@ -14,8 +14,10 @@ endif()
if(NOT CLR_CMAKE_HOST_LINUX AND NOT FEATURE_CROSSBITNESS)
list (APPEND CLR_CROSS_COMPONENTS_LIST
mscordaccore
- if (CLR_CMAKE_HOST_OS STREQUAL CLR_CMAKE_TARGET_OS)
- mscordbi
- endif (CLR_CMAKE_HOST_OS STREQUAL CLR_CMAKE_TARGET_OS)
)
+ if (CLR_CMAKE_HOST_OS STREQUAL CLR_CMAKE_TARGET_OS)
+ list (APPEND CLR_CROSS_COMPONENTS_LIST
+ mscordbi
+ )
+ endif (CLR_CMAKE_HOST_OS STREQUAL CLR_CMAKE_TARGET_OS)
endif()