[Cmake-commits] CMake branch, next, updated. v2.8.4-1737-gcdab855

Brad King brad.king at kitware.com
Mon Jun 13 17:56:48 EDT 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  cdab85513cc99e396d0f5ea2aff8834170fab1e4 (commit)
       via  33f5a83a5d7aa4c5a021c33a3fa55069da5eeed8 (commit)
      from  adf9c1e330975d8611b406d1611b086cb0e4f564 (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=cdab85513cc99e396d0f5ea2aff8834170fab1e4
commit cdab85513cc99e396d0f5ea2aff8834170fab1e4
Merge: adf9c1e 33f5a83
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Jun 13 17:56:46 2011 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Jun 13 17:56:46 2011 -0400

    Merge topic 'gnu-isystem-flag-issue-12258' into next
    
    33f5a83 GNU: Fix CMAKE_INCLUDE_SYSTEM_FLAG_<lang> value (#12258)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=33f5a83a5d7aa4c5a021c33a3fa55069da5eeed8
commit 33f5a83a5d7aa4c5a021c33a3fa55069da5eeed8
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Jun 13 17:48:20 2011 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon Jun 13 17:54:36 2011 -0400

    GNU: Fix CMAKE_INCLUDE_SYSTEM_FLAG_<lang> value (#12258)
    
    Fix typo introduced by commit e28c16b4 (Split GNU compiler information
    files, 2009-12-02).
    
    Reported-by: Campbell Barton <ideasman42 at gmail.com>
    Suggested-by: Michael Hertling <mhertling at online.de>

diff --git a/Modules/Compiler/GNU.cmake b/Modules/Compiler/GNU.cmake
index 0bb31f9..8d6f5df 100644
--- a/Modules/Compiler/GNU.cmake
+++ b/Modules/Compiler/GNU.cmake
@@ -33,6 +33,6 @@ macro(__compiler_gnu lang)
   set(CMAKE_${lang}_CREATE_PREPROCESSED_SOURCE "<CMAKE_${lang}_COMPILER> <DEFINES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE>")
   set(CMAKE_${lang}_CREATE_ASSEMBLY_SOURCE "<CMAKE_${lang}_COMPILER> <DEFINES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE>")
   if(NOT APPLE)
-    set(CMAKE_INCLUDE_SYSTEM_FLAG_CXX "-isystem ")
+    set(CMAKE_INCLUDE_SYSTEM_FLAG_${lang} "-isystem ")
   endif(NOT APPLE)
 endmacro()

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list