From 6ad239675e4e8540fefc7bec7c823e54746931e3 Mon Sep 17 00:00:00 2001 From: Bruce Forstall Date: Mon, 24 Apr 2017 11:15:35 -0700 Subject: [PATCH] Fix cmake warning about mismatched if/endif comment (dotnet/coreclr#11176) Commit migrated from https://github.com/dotnet/coreclr/commit/10cd87fc6cca883097f5e81860e92d295b5f6566 --- src/coreclr/clrfeatures.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.7.4