mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 22:30:38 -04:00
The CMake module code swapped an endif() and an endforeach(), which was never an error before.
13 lines
328 B
CMake
13 lines
328 B
CMake
--- cmake/install_macros.cmake.orig 2021-04-22 20:14:44 UTC
|
|
+++ cmake/install_macros.cmake
|
|
@@ -362,8 +362,8 @@ FUNCTION(INSTALL_DEBUG_TARGET target)
|
|
CONFIGURATIONS Release RelWithDebInfo
|
|
COMPONENT ${ARG_COMPONENT}
|
|
OPTIONAL)
|
|
- ENDIF()
|
|
- ENDFOREACH()
|
|
+ ENDFOREACH()
|
|
+ ENDIF()
|
|
|
|
ENDFUNCTION()
|
|
|