Fix mismatch in the cmake script endif condition (dotnet/coreclr#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 dotnet/coreclr#9809.

Commit migrated from https://github.com/dotnet/coreclr/commit/98ae83d08bb97de3e6e4bb68453dcd4680949734

src/coreclr/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)