[Cmake-commits] CMake branch, next, updated. v3.0.0-rc1-496-gcb79c71
Brad King
brad.king at kitware.com
Tue Mar 4 16:28:07 EST 2014
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 cb79c71e170eb5ae9f52acf68d90782697e2a9cc (commit)
via a2de1b187e326175f118a5f31e585605f72260f9 (commit)
from d9cbfc29bfc1e497265d96e65652fe44c61e10d0 (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=cb79c71e170eb5ae9f52acf68d90782697e2a9cc
commit cb79c71e170eb5ae9f52acf68d90782697e2a9cc
Merge: d9cbfc2 a2de1b1
Author: Brad King <brad.king at kitware.com>
AuthorDate: Tue Mar 4 16:28:06 2014 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Mar 4 16:28:06 2014 -0500
Merge topic 'watcom-rtdll-version' into next
a2de1b18 InstallRequiredSystemLibraries: fix mistake in if comparision
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a2de1b187e326175f118a5f31e585605f72260f9
commit a2de1b187e326175f118a5f31e585605f72260f9
Author: Jiri Malak <malak.jiri at gmail.com>
AuthorDate: Tue Mar 4 21:56:52 2014 +0100
Commit: Brad King <brad.king at kitware.com>
CommitDate: Tue Mar 4 16:28:28 2014 -0500
InstallRequiredSystemLibraries: fix mistake in if comparision
diff --git a/Modules/InstallRequiredSystemLibraries.cmake b/Modules/InstallRequiredSystemLibraries.cmake
index b29896f..7e68e8f 100644
--- a/Modules/InstallRequiredSystemLibraries.cmake
+++ b/Modules/InstallRequiredSystemLibraries.cmake
@@ -374,7 +374,7 @@ if(WATCOM)
string(REGEX MATCHALL "[0-9]+" _watcom_version_list "${_compiler_version}")
list(GET _watcom_version_list 0 _watcom_major)
list(GET _watcom_version_list 1 _watcom_minor)
- if(${_watcom_major} > 11)
+ if(${_watcom_major} GREATER 11)
math(EXPR _watcom_major "${_watcom_major} - 11")
endif()
math(EXPR _watcom_minor "${_watcom_minor} / 10")
-----------------------------------------------------------------------
Summary of changes:
Modules/InstallRequiredSystemLibraries.cmake | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list