From dda0da8b9ef32d4ac36961bb5345988ca502c357 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 16 Sep 2009 15:09:19 -0400 Subject: [PATCH] Fix typo in cmConfigureFileCommand ivar name Rename 'OuputFile' to 'OutputFile'. --- Source/cmConfigureFileCommand.cxx | 8 ++++---- Source/cmConfigureFileCommand.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/cmConfigureFileCommand.cxx b/Source/cmConfigureFileCommand.cxx index cac2552778..8a0377884f 100644 --- a/Source/cmConfigureFileCommand.cxx +++ b/Source/cmConfigureFileCommand.cxx @@ -28,10 +28,10 @@ bool cmConfigureFileCommand return false; } this->InputFile = args[0]; - this->OuputFile = args[1]; - if ( !this->Makefile->CanIWriteThisFile(this->OuputFile.c_str()) ) + this->OutputFile = args[1]; + if ( !this->Makefile->CanIWriteThisFile(this->OutputFile.c_str()) ) { - std::string e = "attempted to configure a file: " + this->OuputFile + std::string e = "attempted to configure a file: " + this->OutputFile + " into a source directory."; this->SetError(e.c_str()); cmSystemTools::SetFatalErrorOccured(); @@ -97,7 +97,7 @@ int cmConfigureFileCommand::ConfigureFile() inFile += this->InputFile; } return this->Makefile->ConfigureFile(inFile.c_str(), - this->OuputFile.c_str(), + this->OutputFile.c_str(), this->CopyOnly, this->AtOnly, this->EscapeQuotes); diff --git a/Source/cmConfigureFileCommand.h b/Source/cmConfigureFileCommand.h index b65ced1c9c..9e22897d24 100644 --- a/Source/cmConfigureFileCommand.h +++ b/Source/cmConfigureFileCommand.h @@ -86,7 +86,7 @@ private: int ConfigureFile(); std::string InputFile; - std::string OuputFile; + std::string OutputFile; bool CopyOnly; bool EscapeQuotes; bool Immediate;