From 5b63b1843eb3a8c9b85d593fb62525194f9ef889 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Fri, 9 Jul 2004 14:18:44 -0400 Subject: [PATCH] BUG: fix spelling errors BUG 952 --- Source/cmMakefile.cxx | 4 ++-- Source/cmUseMangledMesaCommand.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 2fb81b722..46204b0f1 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 d780dfff8..955607364 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; }