forked from Lainports/freebsd-ports
Release notes for the version updates are at: https://blog.kitware.com/cmake-3-15-0-available-for-download/ https://blog.kitware.com/cmake-3-15-1-available-for-download/ https://blog.kitware.com/cmake-3-15-2-available-for-download/ For FreeBSD, not much interesting has changed. Swift language support might be useful. A few ports were fixed as part of this exp-run (libemos not really related to the CMake update, but in general). Thanks to antoine for the exp-runs, tcberner for doing most of the prep-work. PR: 239273 Submitted by: tcberner
13 lines
659 B
Text
13 lines
659 B
Text
Fix build: the symlink to libemosR64.a was not created
|
|
in ${STAGEDIR}, leading to fs_violations during poudriere test-builds.
|
|
|
|
--- libemos-sp/CMakeLists.txt.orig 2019-08-10 23:49:07 UTC
|
|
+++ libemos-sp/CMakeLists.txt
|
|
@@ -45,6 +45,6 @@ ecbuild_add_library(
|
|
# libemos.so ${CMAKE_INSTALL_PREFIX}/${INSTALL_LIB_DIR}/libemos.R32.D64.I32.so)" )
|
|
#else()
|
|
install(CODE "execute_process(COMMAND \"${CMAKE_COMMAND}\" -E create_symlink
|
|
- libemos.a ${CMAKE_INSTALL_PREFIX}/${INSTALL_LIB_DIR}/libemos.R32.D64.I32.a)" )
|
|
+ libemos.a \$ENV{DESTDIR}/${CMAKE_INSTALL_PREFIX}/${INSTALL_LIB_DIR}/libemos.R32.D64.I32.a)" )
|
|
#endif()
|
|
|