Fix mismatch in the cmake script endif condition (#9859)
authorJan Vorlicek <janvorli@microsoft.com>
Tue, 28 Feb 2017 19:19:24 +0000 (20:19 +0100)
committerGitHub <noreply@github.com>
Tue, 28 Feb 2017 19:19:24 +0000 (20:19 +0100)
This change fixes a mismatch in the cmake script endif condition introduced
by #9809.

clrdefinitions.cmake

index 94c9197..185305a 100644 (file)
@@ -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)