[Cmake-commits] CMake branch, next, updated. v2.8.2-965-gd9dc4db
Bill Hoffman
bill.hoffman at kitware.com
Wed Sep 29 14:49:26 EDT 2010
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 d9dc4dbe4359c4da0cda11c479faa5a1a0386401 (commit)
via 525320679887d7df4bad5e619ceafdf2bfe891c5 (commit)
from 49041df013d77dc1af3e8bedbb2e632059395952 (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=d9dc4dbe4359c4da0cda11c479faa5a1a0386401
commit d9dc4dbe4359c4da0cda11c479faa5a1a0386401
Merge: 49041df 5253206
Author: Bill Hoffman <bill.hoffman at kitware.com>
AuthorDate: Wed Sep 29 14:49:23 2010 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Sep 29 14:49:23 2010 -0400
Merge topic 'fix_hpux_test_failure' into next
5253206 Add a new line to the end of the generated main.cxx for the hpux compiler.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=525320679887d7df4bad5e619ceafdf2bfe891c5
commit 525320679887d7df4bad5e619ceafdf2bfe891c5
Author: Bill Hoffman <bill.hoffman at kitware.com>
AuthorDate: Wed Sep 29 14:46:45 2010 -0400
Commit: Bill Hoffman <bill.hoffman at kitware.com>
CommitDate: Wed Sep 29 14:46:45 2010 -0400
Add a new line to the end of the generated main.cxx for the hpux compiler.
Some HPUX compilers give this error: Error 690: "/home/cport/Dashboards/My Tests/CMake-build/Tests/CheckCompilerRelatedVariables/main.cxx", line 1 # Nonempty source files must end with a newline that is not preceded by a backslash.
diff --git a/Tests/CheckCompilerRelatedVariables/CMakeLists.txt b/Tests/CheckCompilerRelatedVariables/CMakeLists.txt
index 7206f1d..8095a1c 100644
--- a/Tests/CheckCompilerRelatedVariables/CMakeLists.txt
+++ b/Tests/CheckCompilerRelatedVariables/CMakeLists.txt
@@ -76,7 +76,8 @@ endif()
file(WRITE
"${CMAKE_CURRENT_BINARY_DIR}/main.cxx"
- "int main() { return 0; }"
+ "int main() { return 0; }
+"
)
add_executable(
-----------------------------------------------------------------------
Summary of changes:
Tests/CheckCompilerRelatedVariables/CMakeLists.txt | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list