summaryrefslogtreecommitdiff
path: root/cmake/modules/FindWSWinLibs.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/modules/FindWSWinLibs.cmake')
-rw-r--r--cmake/modules/FindWSWinLibs.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/FindWSWinLibs.cmake b/cmake/modules/FindWSWinLibs.cmake
index 16e30ee067..6c613753f5 100644
--- a/cmake/modules/FindWSWinLibs.cmake
+++ b/cmake/modules/FindWSWinLibs.cmake
@@ -34,7 +34,7 @@ function( WSExtendPath _LIB_PATH_LIST _PATH_FILE )
foreach( THIS_LIB_PATH ${_LIB_PATH_LIST} )
get_filename_component( LIB_PATH ${THIS_LIB_PATH} PATH )
# lib is required for linking, the dlls are in bin
- string( REPLACE "/lib" "/bin" LIB_PATH "${LIB_PATH}" )
+ string( REGEX REPLACE "/lib$" "/bin" LIB_PATH "${LIB_PATH}" )
#message( STATUS "Raw path ${THIS_LIB_PATH} processed to ${LIB_PATH}." )
set( WS_LOCAL_LIB_PATHS "${WS_LOCAL_LIB_PATHS}" ${LIB_PATH} )
endforeach()