From: Bruce Forstall Date: Mon, 24 Apr 2017 18:15:35 +0000 (-0700) Subject: Fix cmake warning about mismatched if/endif comment (dotnet/coreclr#11176) X-Git-Tag: submit/tizen/20210909.063632~11030^2~7146 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ad239675e4e8540fefc7bec7c823e54746931e3;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix cmake warning about mismatched if/endif comment (dotnet/coreclr#11176) Commit migrated from https://github.com/dotnet/coreclr/commit/10cd87fc6cca883097f5e81860e92d295b5f6566 --- diff --git a/src/coreclr/clrfeatures.cmake b/src/coreclr/clrfeatures.cmake index f7c7c4a..9e986ef 100644 --- a/src/coreclr/clrfeatures.cmake +++ b/src/coreclr/clrfeatures.cmake @@ -19,5 +19,5 @@ endif(NOT DEFINED FEATURE_EVENT_TRACE) if(NOT DEFINED FEATURE_DBGIPC) if(CLR_CMAKE_PLATFORM_UNIX AND (NOT CLR_CMAKE_PLATFORM_ANDROID)) set(FEATURE_DBGIPC 1) - endif(CLR_CMAKE_PLATFORM_UNIX) + endif() endif(NOT DEFINED FEATURE_DBGIPC)