summaryrefslogtreecommitdiff
path: root/Source/cmIncludeCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-06-22 12:17:03 -0400
committerBrad King <brad.king@kitware.com>2001-06-22 12:17:03 -0400
commit5c394700317c86151bca206aa500066e18d13e24 (patch)
tree04ec0c65a95f61054c6e170aa3e8e4099649adce /Source/cmIncludeCommand.cxx
parent24ec7f5c3cb52d7cfead429e88b5d063c1c9933c (diff)
downloadcmake-5c394700317c86151bca206aa500066e18d13e24.tar.gz
BUG: Added missing newline in error message.
Diffstat (limited to 'Source/cmIncludeCommand.cxx')
-rw-r--r--Source/cmIncludeCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmIncludeCommand.cxx b/Source/cmIncludeCommand.cxx
index 1b440dec93..3eae93dc02 100644
--- a/Source/cmIncludeCommand.cxx
+++ b/Source/cmIncludeCommand.cxx
@@ -34,7 +34,7 @@ bool cmIncludeCommand::InitialPass(std::vector<std::string>& args)
}
if(!exists)
{
- std::string error = "Include file not found: " + args[0];
+ std::string error = "Include file not found: " + args[0] + "\n";
this->SetError(error.c_str());
return false;
}