From bbcd8c47724425f26ed9f6ab82617d25ec676f26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Tue, 4 Jun 2024 04:17:03 -0300 Subject: [PATCH] Fixed endif(). --- cmake/Modules/BuildPython.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Modules/BuildPython.cmake b/cmake/Modules/BuildPython.cmake index 5fcaf8cad..f8abffdc2 100644 --- a/cmake/Modules/BuildPython.cmake +++ b/cmake/Modules/BuildPython.cmake @@ -39,7 +39,7 @@ if(APPLE) if(openssl_prefix_error) message(FATAL_ERROR "Could not located openssl with 'brew --prefix openssl'. Error: ${openssl_prefix_error}") endif() - else() + endif() set( Python_CONFIGURE ${CMAKE_COMMAND} -E env "CFLAGS=${Python_C_FLAGS}" "CPPFLAGS=${Python_C_FLAGS}" "CXXFLAGS=${Python_CXX_FLAGS}" "LDFLAGS=${Python_LD_FLAGS}" -- ./configure --enable-optimizations --enable-shared --with-openssl=${_openssl_LOC} --prefix=${CMAKE_INSTALL_PREFIX} )