summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmMakefile.cxx4
-rw-r--r--Source/cmUseMangledMesaCommand.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 2fb81b7..46204b0 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -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;
}
diff --git a/Source/cmUseMangledMesaCommand.cxx b/Source/cmUseMangledMesaCommand.cxx
index d780dff..9556073 100644
--- a/Source/cmUseMangledMesaCommand.cxx
+++ b/Source/cmUseMangledMesaCommand.cxx
@@ -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;
}