BUG: fix spelling errors BUG 952

This commit is contained in:
Bill Hoffman 2004-07-09 14:18:44 -04:00
parent 8c656dc40d
commit 5b63b1843e
2 changed files with 4 additions and 4 deletions

View File

@ -2345,14 +2345,14 @@ int cmMakefile::ConfigureFile(const char* infile, const char* outfile,
if(!fout)
{
cmSystemTools::Error(
"Could not open file for write in copy operatation ",
"Could not open file for write in copy operation ",
tempOutputFile.c_str());
return 0;
}
std::ifstream fin(sinfile.c_str());
if(!fin)
{
cmSystemTools::Error("Could not open file for read in copy operatation ",
cmSystemTools::Error("Could not open file for read in copy operation ",
sinfile.c_str());
return 0;
}

View File

@ -78,14 +78,14 @@ CopyAndFullPathMesaHeader(const char* source,
std::ofstream fout(tempOutputFile.c_str());
if(!fout)
{
cmSystemTools::Error("Could not open file for write in copy operatation: ",
cmSystemTools::Error("Could not open file for write in copy operation: ",
tempOutputFile.c_str(), outdir);
return;
}
std::ifstream fin(source);
if(!fin)
{
cmSystemTools::Error("Could not open file for read in copy operatation",
cmSystemTools::Error("Could not open file for read in copy operation",
source);
return;
}