CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2021/04/25 06:25:30
Modified files:
devel/cmake : cmake.port.mk
Log message:
Enable CMAKE_SUPPRESS_REGENERATION
https://cmake.org/cmake/help/latest/variable/CMAKE_SUPPRESS_REGENERATION.html
If something change during the build-task in /usr/local/share/cmake/Modules/
(For example, another package was installed), cmake starts a second configure
tasks after the build task. In this second task our (self hacked) SHARED_LIBS
VERSION's are lost. Whit CMAKE_SUPPRESS_REGENERATION=ON this not happen.
This should lead to significantly better cmake bulk build results.
OK sthen@