[Cmake-commits] CMake branch, next, updated. v2.8.6-2282-g3ed3ace

David Cole david.cole at kitware.com
Mon Dec 19 11:09:06 EST 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  3ed3ace254754f60d9f0b483dacc4dd0e346f6b2 (commit)
       via  cdf522436f6623d8a2ded55aa3192a7041c7773b (commit)
      from  4ceae71c690527617e054e73c53670967acd0a8c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=3ed3ace254754f60d9f0b483dacc4dd0e346f6b2
commit 3ed3ace254754f60d9f0b483dacc4dd0e346f6b2
Merge: 4ceae71 cdf5224
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Mon Dec 19 11:08:54 2011 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Dec 19 11:08:54 2011 -0500

    Merge topic 'fix-12273-quote-arg-in-findboost' into next
    
    cdf5224 FindBoost: Quote possibly empty string argument (#12273)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=cdf522436f6623d8a2ded55aa3192a7041c7773b
commit cdf522436f6623d8a2ded55aa3192a7041c7773b
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Mon Dec 19 10:54:04 2011 -0500
Commit:     David Cole <david.cole at kitware.com>
CommitDate: Mon Dec 19 10:55:41 2011 -0500

    FindBoost: Quote possibly empty string argument (#12273)
    
    Author: Claudio Bley

diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake
index ea60354..9c03b3d 100644
--- a/Modules/FindBoost.cmake
+++ b/Modules/FindBoost.cmake
@@ -405,7 +405,7 @@ endfunction()
 #
 function(_Boost_PREPEND_LIST_WITH_THREADAPI _output)
   set(_orig_libnames ${ARGN})
-  string(REPLACE "thread" "thread_${Boost_THREADAPI}" _threadapi_libnames ${_orig_libnames})
+  string(REPLACE "thread" "thread_${Boost_THREADAPI}" _threadapi_libnames "${_orig_libnames}")
   set(${_output} ${_threadapi_libnames} ${_orig_libnames} PARENT_SCOPE)
 endfunction()
 

-----------------------------------------------------------------------

Summary of changes:
 Modules/FindBoost.cmake |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list