diff options
author | Philip Lowman <philip@yhbt.com> | 2009-01-18 21:40:53 (GMT) |
---|---|---|
committer | Philip Lowman <philip@yhbt.com> | 2009-01-18 21:40:53 (GMT) |
commit | ee91442a9046cfc4e0996543f1b4d1dc4de5541f (patch) | |
tree | 26b9fa92cfacf414bf61a01546db92b5ec4d26f3 /Modules | |
parent | d077940f94846557cfb3f644254d63eb003bff95 (diff) | |
download | CMake-ee91442a9046cfc4e0996543f1b4d1dc4de5541f.zip CMake-ee91442a9046cfc4e0996543f1b4d1dc4de5541f.tar.gz CMake-ee91442a9046cfc4e0996543f1b4d1dc4de5541f.tar.bz2 |
BUG: Fixes problem with _boost_ABI_TAG appending to itself if FindBoost is called more than once (Issue #7460)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FindBoost.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake index 5b47fea..f9f0a8b 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -548,6 +548,7 @@ ELSE (_boost_IN_CACHE) endif() SET( _boost_STATIC_TAG "") + set( _boost_ABI_TAG "") IF (WIN32) IF(MSVC) SET (_boost_ABI_TAG "g") |