diff options
author | Philip Lowman <philip@yhbt.com> | 2010-09-18 15:16:09 (GMT) |
---|---|---|
committer | Philip Lowman <philip@yhbt.com> | 2010-09-18 15:16:09 (GMT) |
commit | 02390416e101edbf07aa9e0952fc3c0452b97009 (patch) | |
tree | e00ddd395c186c92eb0371f5461bac317bed6077 /Modules/FindBoost.cmake | |
parent | d4900c2eca0964f8ce719cb4b8502e15114c042e (diff) | |
download | CMake-02390416e101edbf07aa9e0952fc3c0452b97009.zip CMake-02390416e101edbf07aa9e0952fc3c0452b97009.tar.gz CMake-02390416e101edbf07aa9e0952fc3c0452b97009.tar.bz2 |
FindBoost.cmake: Fixes 11246
FindBoost can find shared libraries (.so) in rare circumstances
even when Boost_USE_STATIC_LIBS is set
Diffstat (limited to 'Modules/FindBoost.cmake')
-rw-r--r-- | Modules/FindBoost.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake index ee77abe..32c0ab6 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -800,7 +800,7 @@ ELSE (_boost_IN_CACHE) if(WIN32) set(CMAKE_FIND_LIBRARY_SUFFIXES .lib .a ${CMAKE_FIND_LIBRARY_SUFFIXES}) else() - set(CMAKE_FIND_LIBRARY_SUFFIXES .a ${CMAKE_FIND_LIBRARY_SUFFIXES} ) + set(CMAKE_FIND_LIBRARY_SUFFIXES .a ) endif() endif() |