diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 018c605db..0f8d131ac 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -91,7 +91,7 @@ bool cmFileCommand::HandleWriteCommand(std::vector const& args, this->SetError(error.c_str()); return false; } - file << message << std::endl; + file << message; file.close(); return true; }