[Cmake-commits] CMake branch, next, updated. v3.4.1-1574-geb9afec
Chuck Atkins
chuck.atkins at kitware.com
Thu Dec 3 10:25:12 EST 2015
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 eb9afec9bd9949e4a7fd26b95bf1b9a0eafcfe1e (commit)
via 07b0b29d6cb38cec581c126b4e69fc10e8e48d1a (commit)
from 4d1d9c62c5bb26fdf202e6fa5f302bee254ab77c (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=eb9afec9bd9949e4a7fd26b95bf1b9a0eafcfe1e
commit eb9afec9bd9949e4a7fd26b95bf1b9a0eafcfe1e
Merge: 4d1d9c6 07b0b29
Author: Chuck Atkins <chuck.atkins at kitware.com>
AuthorDate: Thu Dec 3 10:25:10 2015 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Dec 3 10:25:10 2015 -0500
Merge topic 'detect-compiler-wrappers' into next
07b0b29d Wrappers: remove generic case
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=07b0b29d6cb38cec581c126b4e69fc10e8e48d1a
commit 07b0b29d6cb38cec581c126b4e69fc10e8e48d1a
Author: Chuck Atkins <chuck.atkins at kitware.com>
AuthorDate: Thu Dec 3 10:24:33 2015 -0500
Commit: Chuck Atkins <chuck.atkins at kitware.com>
CommitDate: Thu Dec 3 10:24:33 2015 -0500
Wrappers: remove generic case
diff --git a/Modules/CMakeCInformation.cmake b/Modules/CMakeCInformation.cmake
index c204c77..5c3705c 100644
--- a/Modules/CMakeCInformation.cmake
+++ b/Modules/CMakeCInformation.cmake
@@ -70,9 +70,6 @@ if (CMAKE_C_COMPILER_WRAPPER)
if (NOT _INCLUDED_WRAPPER_FILE)
include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_C_COMPILER_WRAPPER}-C OPTIONAL RESULT_VARIABLE _INCLUDED_WRAPPER_FILE)
endif ()
- if (NOT _INCLUDED_WRAPPER_FILE)
- include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_C_COMPILER_WRAPPER} OPTIONAL)
- endif ()
endif ()
# We specify the compiler information in the system file for some
diff --git a/Modules/CMakeCXXInformation.cmake b/Modules/CMakeCXXInformation.cmake
index cd706f4..cbcd0df 100644
--- a/Modules/CMakeCXXInformation.cmake
+++ b/Modules/CMakeCXXInformation.cmake
@@ -69,9 +69,6 @@ if (CMAKE_CXX_COMPILER_WRAPPER)
if (NOT _INCLUDED_WRAPPER_FILE)
include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_CXX_COMPILER_WRAPPER}-CXX OPTIONAL RESULT_VARIABLE _INCLUDED_WRAPPER_FILE)
endif ()
- if (NOT _INCLUDED_WRAPPER_FILE)
- include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_CXX_COMPILER_WRAPPER} OPTIONAL)
- endif ()
endif ()
# We specify the compiler information in the system file for some
diff --git a/Modules/CMakeFortranInformation.cmake b/Modules/CMakeFortranInformation.cmake
index 110eec2..84ece04 100644
--- a/Modules/CMakeFortranInformation.cmake
+++ b/Modules/CMakeFortranInformation.cmake
@@ -46,9 +46,6 @@ if (CMAKE_Fortran_COMPILER_WRAPPER)
if (NOT _INCLUDED_WRAPPER_FILE)
include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_Fortran_COMPILER_WRAPPER}-Fortran OPTIONAL RESULT_VARIABLE _INCLUDED_WRAPPER_FILE)
endif ()
- if (NOT _INCLUDED_WRAPPER_FILE)
- include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_Fortran_COMPILER_WRAPPER} OPTIONAL)
- endif ()
endif ()
# We specify the compiler information in the system file for some
-----------------------------------------------------------------------
Summary of changes:
Modules/CMakeCInformation.cmake | 3 ---
Modules/CMakeCXXInformation.cmake | 3 ---
Modules/CMakeFortranInformation.cmake | 3 ---
3 files changed, 9 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list