diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-10 18:15:15 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-10 18:15:15 (GMT) |
commit | d77fbb9640900294e5a32305188c89a3e70e6cc5 (patch) | |
tree | 50d36cc5b6773d2172a749135a8b3ee1e803c64e /Source/cmConfigureFileCommand.cxx | |
parent | 20c27063ddbf22b5a90d27a2d45bd1b3d140e532 (diff) | |
download | CMake-d77fbb9640900294e5a32305188c89a3e70e6cc5.zip CMake-d77fbb9640900294e5a32305188c89a3e70e6cc5.tar.gz CMake-d77fbb9640900294e5a32305188c89a3e70e6cc5.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmConfigureFileCommand.cxx')
-rw-r--r-- | Source/cmConfigureFileCommand.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmConfigureFileCommand.cxx b/Source/cmConfigureFileCommand.cxx index b382f86..ccfe3d4 100644 --- a/Source/cmConfigureFileCommand.cxx +++ b/Source/cmConfigureFileCommand.cxx @@ -30,7 +30,8 @@ bool cmConfigureFileCommand::InitialPass(std::vector<std::string> const& args) this->OuputFile = args[1]; if ( !this->Makefile->CanIWriteThisFile(this->OuputFile.c_str()) ) { - std::string e = "attempted to configure a file: " + this->OuputFile + " into a source directory."; + std::string e = "attempted to configure a file: " + this->OuputFile + + " into a source directory."; this->SetError(e.c_str()); cmSystemTools::SetFatalErrorOccured(); return false; |