diff options
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 2 insertions, 2 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; } |