summaryrefslogtreecommitdiff
path: root/clrdefinitions.cmake
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2017-02-28 20:19:24 +0100
committerGitHub <noreply@github.com>2017-02-28 20:19:24 +0100
commit98ae83d08bb97de3e6e4bb68453dcd4680949734 (patch)
treeaae96ee1f14150d22ea523a15b3faac3b3af0888 /clrdefinitions.cmake
parent8b9ae26e519517a3a00f790eabda465ebf0c0578 (diff)
downloadcoreclr-98ae83d08bb97de3e6e4bb68453dcd4680949734.tar.gz
coreclr-98ae83d08bb97de3e6e4bb68453dcd4680949734.tar.bz2
coreclr-98ae83d08bb97de3e6e4bb68453dcd4680949734.zip
Fix mismatch in the cmake script endif condition (#9859)
This change fixes a mismatch in the cmake script endif condition introduced by #9809.
Diffstat (limited to 'clrdefinitions.cmake')
-rw-r--r--clrdefinitions.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/clrdefinitions.cmake b/clrdefinitions.cmake
index 94c9197981..185305a346 100644
--- a/clrdefinitions.cmake
+++ b/clrdefinitions.cmake
@@ -118,7 +118,7 @@ add_definitions(-DFEATURE_CORRUPTING_EXCEPTIONS)
if(CLR_CMAKE_PLATFORM_UNIX AND (NOT CLR_CMAKE_PLATFORM_ANDROID))
add_definitions(-DFEATURE_DBGIPC_TRANSPORT_DI)
add_definitions(-DFEATURE_DBGIPC_TRANSPORT_VM)
-endif(CLR_CMAKE_PLATFORM_UNIX)
+endif(CLR_CMAKE_PLATFORM_UNIX AND (NOT CLR_CMAKE_PLATFORM_ANDROID))
if(FEATURE_EVENT_TRACE)
add_definitions(-DFEATURE_EVENT_TRACE=1)
endif(FEATURE_EVENT_TRACE)