diff options
author | Daniel Eiband <daniel.eiband@brainlab.com> | 2019-09-23 21:39:07 (GMT) |
---|---|---|
committer | Daniel Eiband <daniel.eiband@brainlab.com> | 2019-09-23 21:39:07 (GMT) |
commit | fd3a39461457540157ea9bee2f9ea7620dfd1c7f (patch) | |
tree | ea8fd734da408fbd767969866ab1b3b1fa691a16 /Source/cmAddCustomCommandCommand.cxx | |
parent | a1cc6b4447787b84777fdf9a860e8c39f0f4a090 (diff) | |
download | CMake-fd3a39461457540157ea9bee2f9ea7620dfd1c7f.zip CMake-fd3a39461457540157ea9bee2f9ea7620dfd1c7f.tar.gz CMake-fd3a39461457540157ea9bee2f9ea7620dfd1c7f.tar.bz2 |
add_custom_command: Format files in error message in a single line
Diffstat (limited to 'Source/cmAddCustomCommandCommand.cxx')
-rw-r--r-- | Source/cmAddCustomCommandCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmAddCustomCommandCommand.cxx b/Source/cmAddCustomCommandCommand.cxx index 9d665c4..94de851 100644 --- a/Source/cmAddCustomCommandCommand.cxx +++ b/Source/cmAddCustomCommandCommand.cxx @@ -320,8 +320,8 @@ bool cmAddCustomCommandCommand(std::vector<std::string> const& args, // No command for this output exists. status.SetError( - cmStrCat("given APPEND option with output\n\"", output[0], - "\"\nwhich is not already a custom command output.")); + cmStrCat("given APPEND option with output\n ", output[0], + "\nwhich is not already a custom command output.")); return false; } |