[Cmake-commits] CMake branch, next, updated. v3.3.0-rc3-976-g9561cf0
Brad King
brad.king at kitware.com
Fri Jul 10 08:55:28 EDT 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 9561cf0e324c1b1dbd6eb57ff46a2763094023d2 (commit)
via c078fe86b25206bde63d8bb16338ce84efb0bc21 (commit)
from 3e09fc3ffb8e0d5d00ec46edc373029d860d43b2 (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=9561cf0e324c1b1dbd6eb57ff46a2763094023d2
commit 9561cf0e324c1b1dbd6eb57ff46a2763094023d2
Merge: 3e09fc3 c078fe8
Author: Brad King <brad.king at kitware.com>
AuthorDate: Fri Jul 10 08:55:27 2015 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Jul 10 08:55:27 2015 -0400
Merge topic 'FindMPI-Intel-5' into next
c078fe86 fixup! FindMPI: Extend Intel-MPI 5+ workaround for recent GCCs
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c078fe86b25206bde63d8bb16338ce84efb0bc21
commit c078fe86b25206bde63d8bb16338ce84efb0bc21
Author: Brad King <brad.king at kitware.com>
AuthorDate: Fri Jul 10 08:55:03 2015 -0400
Commit: Brad King <brad.king at kitware.com>
CommitDate: Fri Jul 10 08:55:03 2015 -0400
fixup! FindMPI: Extend Intel-MPI 5+ workaround for recent GCCs
diff --git a/Modules/FindMPI.cmake b/Modules/FindMPI.cmake
index 039f109..06ecfaa 100644
--- a/Modules/FindMPI.cmake
+++ b/Modules/FindMPI.cmake
@@ -204,7 +204,7 @@ function (_mpi_check_compiler compiler options cmdvar resvar)
# Intel MPI 5.0.1 will return a zero return code even when the
# argument to the MPI compiler wrapper is unknown. Attempt to
# catch this case.
- if("${cmdline}" MATCHES "undefined reference" OR "${cmdline}" MATCHES "unrecognized")
+ if(cmdline MATCHES "undefined reference" OR cmdline MATCHES "unrecognized")
set(success 255 )
endif()
set(${cmdvar} "${cmdline}" PARENT_SCOPE)
-----------------------------------------------------------------------
Summary of changes:
Modules/FindMPI.cmake | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list