[Cmake-commits] CMake branch, next, updated. v3.1.0-rc3-1159-gd246327
Ben Boeckel
ben.boeckel at kitware.com
Fri Dec 12 18:44:19 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 d2463278c7760710e1c1913d0332e31fa8f50740 (commit)
via 480e60298f862e0c1942b6e028e509f81b9ab71e (commit)
from d42fb107b932f29001ba2ac362c2fee319c8c55a (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=d2463278c7760710e1c1913d0332e31fa8f50740
commit d2463278c7760710e1c1913d0332e31fa8f50740
Merge: d42fb10 480e602
Author: Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Fri Dec 12 18:44:17 2014 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Dec 12 18:44:17 2014 -0500
Merge topic 'extproj-extra-newlines' into next
480e6029 ExternalProject: remove extra newlines from log messages
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=480e60298f862e0c1942b6e028e509f81b9ab71e
commit 480e60298f862e0c1942b6e028e509f81b9ab71e
Author: Ben Boeckel <mathstuf at gmail.com>
AuthorDate: Fri Dec 12 18:42:33 2014 -0500
Commit: Ben Boeckel <mathstuf at gmail.com>
CommitDate: Fri Dec 12 18:42:33 2014 -0500
ExternalProject: remove extra newlines from log messages
message() already adds a newline.
diff --git a/Modules/ExternalProject.cmake b/Modules/ExternalProject.cmake
index 7e4cc37..98ff716 100644
--- a/Modules/ExternalProject.cmake
+++ b/Modules/ExternalProject.cmake
@@ -1320,10 +1320,10 @@ if(result)
foreach(arg IN LISTS command)
set(msg \"\${msg} '\${arg}'\")
endforeach()
- set(msg \"\${msg}\\nSee also\\n ${logbase}-*.log\\n\")
+ set(msg \"\${msg}\\nSee also\\n ${logbase}-*.log\")
message(FATAL_ERROR \"\${msg}\")
else()
- set(msg \"${name} ${step} command succeeded. See also ${logbase}-*.log\\n\")
+ set(msg \"${name} ${step} command succeeded. See also ${logbase}-*.log\")
message(STATUS \"\${msg}\")
endif()
")
-----------------------------------------------------------------------
Summary of changes:
Modules/ExternalProject.cmake | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list