mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-25 00:59:19 -06:00
ExternalProject: remove extra newlines from log messages
message() already adds a newline.
This commit is contained in:
@@ -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()
|
||||
")
|
||||
|
||||
Reference in New Issue
Block a user