# HG changeset patch # User koda # Date 1373278623 -7200 # Node ID 4dfebad83d51f7aef928da667d820d9399e8ed8d # Parent 14f5f3a1e2f7d2f67bda3b2fff0a60872a438aff just set these flags directly diff -r 14f5f3a1e2f7 -r 4dfebad83d51 cmake_modules/CMakePascalInformation.cmake --- a/cmake_modules/CMakePascalInformation.cmake Mon Jul 08 12:10:55 2013 +0200 +++ b/cmake_modules/CMakePascalInformation.cmake Mon Jul 08 12:17:03 2013 +0200 @@ -50,8 +50,7 @@ if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_Pascal_FLAG) #-Wl,-rpath, - string(REGEX REPLACE "-Wl," "-k" CMAKE_SHARED_LIBRARY_RUNTIME_Pascal_FLAG ${CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG}) - string(REGEX REPLACE "," "" CMAKE_SHARED_LIBRARY_RUNTIME_Pascal_FLAG ${CMAKE_SHARED_LIBRARY_RUNTIME_Pascal_FLAG}) + set(CMAKE_SHARED_LIBRARY_RUNTIME_Pascal_FLAG "-k-rpath") endif(NOT CMAKE_SHARED_LIBRARY_RUNTIME_Pascal_FLAG) if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_Pascal_FLAG_SEP) @@ -60,7 +59,7 @@ if(NOT CMAKE_SHARED_LIBRARY_RPATH_LINK_Pascal_FLAG) #-Wl,-rpath-link, - string(REGEX REPLACE "-Wl," "-k" CMAKE_SHARED_LIBRARY_RPATH_LINK_Pascal_FLAG ${CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG}) + set(CMAKE_SHARED_LIBRARY_RUNTIME_Pascal_FLAG "-k-rpath-link") endif(NOT CMAKE_SHARED_LIBRARY_RPATH_LINK_Pascal_FLAG) # for most systems a module is the same as a shared library @@ -99,7 +98,7 @@ # Copy C version of this flag which is normally determined in platform file. if(NOT CMAKE_SHARED_LIBRARY_SONAME_Pascal_FLAG) - string(REGEX REPLACE "-Wl," "-k" CMAKE_SHARED_LIBRARY_SONAME_Pascal_FLAG ${CMAKE_SHARED_LIBRARY_SONAME_C_FLAG}) + set(CMAKE_SHARED_LIBRARY_SONAME_Pascal_FLAG ${CMAKE_SHARED_LIBRARY_SONAME_C_FLAG}) endif(NOT CMAKE_SHARED_LIBRARY_SONAME_Pascal_FLAG) set(CMAKE_VERBOSE_MAKEFILE FALSE CACHE BOOL "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo.")