Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2021-05-15 01:13:56 +0300
committerGitHub <noreply@github.com>2021-05-15 01:13:56 +0300
commit4edea6eafac43160f7b96bf8f8cec1a1dbb4d9dc (patch)
tree7fcbc53e9a3e06f40cac5385ab55ffb9e73e7fae /src/coreclr/crosscomponents.cmake
parent1e48704e78b3d65dfbfa1f9e6a50ff0fb2ccc446 (diff)
Fix cmake warning (#52788)
Fix this: ``` CMake Warning (dev) in crosscomponents.cmake: A logical block opening on the line C:/gh/runtime4/src/coreclr/crosscomponents.cmake:24 (if) closes on the line C:/gh/runtime4/src/coreclr/crosscomponents.cmake:36 (endif) with mis-matching arguments. Call Stack (most recent call first): CMakeLists.txt:254 (include) This warning is for project developers. Use -Wno-dev to suppress it. ```
Diffstat (limited to 'src/coreclr/crosscomponents.cmake')
-rw-r--r--src/coreclr/crosscomponents.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coreclr/crosscomponents.cmake b/src/coreclr/crosscomponents.cmake
index aa991eaef3a..b779f461aa9 100644
--- a/src/coreclr/crosscomponents.cmake
+++ b/src/coreclr/crosscomponents.cmake
@@ -33,7 +33,7 @@ if (CLR_CMAKE_HOST_OS STREQUAL CLR_CMAKE_TARGET_OS)
DESTINATIONS . sharedFramework
COMPONENT crosscomponents
)
- endif(CLR_CMAKE_TARGET_UNIX)
+ endif()
endif()
if(NOT CLR_CMAKE_HOST_LINUX AND NOT CLR_CMAKE_HOST_OSX AND NOT FEATURE_CROSSBITNESS)