summaryrefslogtreecommitdiffstats
path: root/Source/cmCheckCustomOutputs.cxx
diff options
context:
space:
mode:
authorDaniel Eiband <daniel.eiband@brainlab.com>2019-09-23 21:39:07 (GMT)
committerDaniel Eiband <daniel.eiband@brainlab.com>2019-09-23 21:39:07 (GMT)
commitfd3a39461457540157ea9bee2f9ea7620dfd1c7f (patch)
treeea8fd734da408fbd767969866ab1b3b1fa691a16 /Source/cmCheckCustomOutputs.cxx
parenta1cc6b4447787b84777fdf9a860e8c39f0f4a090 (diff)
downloadCMake-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/cmCheckCustomOutputs.cxx')
-rw-r--r--Source/cmCheckCustomOutputs.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCheckCustomOutputs.cxx b/Source/cmCheckCustomOutputs.cxx
index a401738..7645c88 100644
--- a/Source/cmCheckCustomOutputs.cxx
+++ b/Source/cmCheckCustomOutputs.cxx
@@ -17,8 +17,8 @@ bool cmCheckCustomOutputs(const std::vector<std::string>& outputs,
// directory during an out of source build.
if (!mf.CanIWriteThisFile(o)) {
status.SetError(
- cmStrCat("attempted to have a file\n\"", o,
- "\"\nin a source directory as an output of custom command."));
+ cmStrCat("attempted to have a file\n ", o,
+ "\nin a source directory as an output of custom command."));
cmSystemTools::SetFatalErrorOccured();
return false;
}