summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-12-15 16:06:54 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-12-15 16:06:54 (GMT)
commitb9e0babea92829e622eab9415ea64e43ec41bacf (patch)
tree9555af8d7ba6386cab091e03ddedc9fddcb94f88
parentab09122717ff8138086cd46787f0badbba0f5669 (diff)
parent480e60298f862e0c1942b6e028e509f81b9ab71e (diff)
downloadCMake-b9e0babea92829e622eab9415ea64e43ec41bacf.zip
CMake-b9e0babea92829e622eab9415ea64e43ec41bacf.tar.gz
CMake-b9e0babea92829e622eab9415ea64e43ec41bacf.tar.bz2
Merge topic 'extproj-extra-newlines'
480e6029 ExternalProject: remove extra newlines from log messages
-rw-r--r--Modules/ExternalProject.cmake4
1 files changed, 2 insertions, 2 deletions
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()
")