Skip to content

Commit 3f6ab15

Browse files
committed
MAINT: remove legacy CMake endif()
* clean up a case where CMake endif() contained the conditional used in the if(), which is no longer needed / discouraged since our minimum required CMake version supports the modern syntax
1 parent b0b7600 commit 3f6ab15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/system_check.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if (${HOST_OS} STREQUAL "LINUX")
1515
EXECUTE_PROCESS( COMMAND uname -o COMMAND tr -d '\n' OUTPUT_VARIABLE OPERATING_SYSTEM)
1616
if(${OPERATING_SYSTEM} MATCHES "Android")
1717
set(HOST_OS ANDROID)
18-
endif(${OPERATING_SYSTEM} MATCHES "Android")
18+
endif()
1919
endif()
2020

2121

0 commit comments

Comments
 (0)