Skip to content

Commit

Permalink
MAINT: remove legacy CMake endif()
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
tylerjereddy committed Jul 23, 2019
1 parent b0b7600 commit 3f6ab15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/system_check.cmake
Expand Up @@ -15,7 +15,7 @@ if (${HOST_OS} STREQUAL "LINUX")
EXECUTE_PROCESS( COMMAND uname -o COMMAND tr -d '\n' OUTPUT_VARIABLE OPERATING_SYSTEM)
if(${OPERATING_SYSTEM} MATCHES "Android")
set(HOST_OS ANDROID)
endif(${OPERATING_SYSTEM} MATCHES "Android")
endif()
endif()


Expand Down

0 comments on commit 3f6ab15

Please sign in to comment.