[Cmake-commits] CMake branch, next, updated. v2.8.6-2345-g2599b8f

Brad King brad.king at kitware.com
Mon Jan 2 13:30:34 EST 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  2599b8f397aae56cd6700aa991d747a929cd3167 (commit)
       via  9f92cdf24d661fa46c19387fdc400c8d19c9a15d (commit)
      from  b8c16980fc5917a5e73befc8a5737585ebeb35f8 (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=2599b8f397aae56cd6700aa991d747a929cd3167
commit 2599b8f397aae56cd6700aa991d747a929cd3167
Merge: b8c1698 9f92cdf
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Jan 2 13:30:32 2012 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Jan 2 13:30:32 2012 -0500

    Merge topic 'GenerateExportHeader-IS_ABSOLUTE-issue-12645' into next
    
    9f92cdf GenerateExportHeader: Fix wrong use of IS_ABSOLUTE (#12645)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9f92cdf24d661fa46c19387fdc400c8d19c9a15d
commit 9f92cdf24d661fa46c19387fdc400c8d19c9a15d
Author:     Michael Wild <themiwi at users.sourceforge.net>
AuthorDate: Sat Dec 31 21:31:40 2011 +0100
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon Jan 2 13:27:07 2012 -0500

    GenerateExportHeader: Fix wrong use of IS_ABSOLUTE (#12645)
    
    Test content of _GEH_EXPORT_FILE_NAME, not variable name.
    
    Signed-off-by: Michael Wild <themiwi at users.sourceforge.net>

diff --git a/Modules/GenerateExportHeader.cmake b/Modules/GenerateExportHeader.cmake
index 7df274e..781b6e7 100644
--- a/Modules/GenerateExportHeader.cmake
+++ b/Modules/GenerateExportHeader.cmake
@@ -298,7 +298,7 @@ macro(_DO_GENERATE_EXPORT_HEADER TARGET_LIBRARY)
     set(EXPORT_MACRO_NAME ${_GEH_PREFIX_NAME}${_GEH_EXPORT_MACRO_NAME})
   endif()
   if(_GEH_EXPORT_FILE_NAME)
-    if(IS_ABSOLUTE _GEH_EXPORT_FILE_NAME)
+    if(IS_ABSOLUTE ${_GEH_EXPORT_FILE_NAME})
       set(EXPORT_FILE_NAME ${_GEH_EXPORT_FILE_NAME})
     else()
       set(EXPORT_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/${_GEH_EXPORT_FILE_NAME}")

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list