[Cmake-commits] CMake branch, next, updated. v2.8.9-1165-g38b0807

Rolf Eike Beer eike at sf-mail.de
Fri Oct 19 14:00:11 EDT 2012


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  38b0807432d9eba62991d663d002fb2afcd70e77 (commit)
       via  476017275a1ffe1735a57ca59ed1e92ef24e175b (commit)
       via  4c5db6ce6c2bb90f0f7eaa54f31e35767d9e5816 (commit)
       via  2fb2a09c0ebaf98807a765e413c683cfcd874b3f (commit)
      from  11e0389572152001ea3235071d6e4c6a2f4cdf64 (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=38b0807432d9eba62991d663d002fb2afcd70e77
commit 38b0807432d9eba62991d663d002fb2afcd70e77
Merge: 11e0389 4760172
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Fri Oct 19 14:00:09 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Oct 19 14:00:09 2012 -0400

    Merge topic 'fix-selectlibconfig' into next
    
    4760172 fix regression in SelectLibraryConfigurations
    4c5db6c CMake Nightly Date Stamp
    2fb2a09 CMake Nightly Date Stamp


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=476017275a1ffe1735a57ca59ed1e92ef24e175b
commit 476017275a1ffe1735a57ca59ed1e92ef24e175b
Author:     Thomas Arcila <thomas.arcila at gmail.com>
AuthorDate: Fri Oct 19 19:57:32 2012 +0200
Commit:     Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Fri Oct 19 19:58:59 2012 +0200

    fix regression in SelectLibraryConfigurations
    
    The bug was introduced in 5797512cec6ce106cf3277c59abd2ccb86ce2846
    (SelectLibraryConfiguration: generate correct output when input vars are lists).

diff --git a/Modules/SelectLibraryConfigurations.cmake b/Modules/SelectLibraryConfigurations.cmake
index 82bb173..eb4d885 100644
--- a/Modules/SelectLibraryConfigurations.cmake
+++ b/Modules/SelectLibraryConfigurations.cmake
@@ -54,10 +54,10 @@ macro( select_library_configurations basename )
         # is set, then set optimized and debug options.
         if( CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE )
             set( ${basename}_LIBRARY )
-            foreach( _libname LISTS ${basename}_LIBRARY_RELEASE )
+            foreach( _libname IN LISTS ${basename}_LIBRARY_RELEASE )
                 list( APPEND ${basename}_LIBRARY optimized "${_libname}" )
             endforeach()
-            foreach( _libname LISTS ${basename}_LIBRARY_DEBUG )
+            foreach( _libname IN LISTS ${basename}_LIBRARY_DEBUG )
                 list( APPEND ${basename}_LIBRARY debug "${_libname}" )
             endforeach()
             set( ${basename}_LIBRARIES "${${basename}_LIBRARY}" )

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list