diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-07-09 18:18:44 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-07-09 18:18:44 (GMT) |
commit | 5b63b1843eb3a8c9b85d593fb62525194f9ef889 (patch) | |
tree | 018e73820798aa585f4361611df00d5df76501a6 /Source/cmMakefile.cxx | |
parent | 8c656dc40d9b42a819c7d3e3889f28d37e1e2e61 (diff) | |
download | CMake-5b63b1843eb3a8c9b85d593fb62525194f9ef889.zip CMake-5b63b1843eb3a8c9b85d593fb62525194f9ef889.tar.gz CMake-5b63b1843eb3a8c9b85d593fb62525194f9ef889.tar.bz2 |
BUG: fix spelling errors BUG 952
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; } |