[Cmake-commits] CMake branch, next, updated. v2.8.8-3276-gcafd80b

Brad King brad.king at kitware.com
Wed Jun 20 15:53:29 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  cafd80b1eaddb3279e7e324b8d9d9473304f5e1c (commit)
       via  b9ccaf5f7977b7444a50a7b1dbb1902422f7ab27 (commit)
      from  ff911253351b29db9b66aea785b6e790db8a3622 (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=cafd80b1eaddb3279e7e324b8d9d9473304f5e1c
commit cafd80b1eaddb3279e7e324b8d9d9473304f5e1c
Merge: ff91125 b9ccaf5
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Jun 20 15:53:27 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Jun 20 15:53:27 2012 -0400

    Merge topic 'CMakeDetermineCCompiler-clear-init' into next
    
    b9ccaf5 CMakeDetermineCCompiler: Fix typo "_CXX_" -> "_C_" (#13330)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b9ccaf5f7977b7444a50a7b1dbb1902422f7ab27
commit b9ccaf5f7977b7444a50a7b1dbb1902422f7ab27
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Jun 20 15:38:53 2012 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Wed Jun 20 15:38:53 2012 -0400

    CMakeDetermineCCompiler: Fix typo "_CXX_" -> "_C_" (#13330)
    
    Initialize CMAKE_C_COMPILER_INIT before using it, rather than
    CMAKE_CXX_COMPILER_INIT.

diff --git a/Modules/CMakeDetermineCCompiler.cmake b/Modules/CMakeDetermineCCompiler.cmake
index 53f558e..9028e8e 100644
--- a/Modules/CMakeDetermineCCompiler.cmake
+++ b/Modules/CMakeDetermineCCompiler.cmake
@@ -32,7 +32,7 @@
 #   _CMAKE_TOOLCHAIN_PREFIX
 
 IF(NOT CMAKE_C_COMPILER)
-  SET(CMAKE_CXX_COMPILER_INIT NOTFOUND)
+  SET(CMAKE_C_COMPILER_INIT NOTFOUND)
 
   # prefer the environment variable CC
   IF($ENV{CC} MATCHES ".+")

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list