From: Jan Vorlicek Date: Tue, 28 Feb 2017 19:19:24 +0000 (+0100) Subject: Fix mismatch in the cmake script endif condition (dotnet/coreclr#9859) X-Git-Tag: submit/tizen/20210909.063632~11030^2~7915 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7451f3eff1f5205951b9fcf15371c66514d1b06b;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix mismatch in the cmake script endif condition (dotnet/coreclr#9859) 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 --- diff --git a/src/coreclr/clrdefinitions.cmake b/src/coreclr/clrdefinitions.cmake index 94c9197..185305a 100644 --- a/src/coreclr/clrdefinitions.cmake +++ b/src/coreclr/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)