diff options
author | Andreas Mohr <andim2@users.sourceforge.net> | 2013-05-01 08:30:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-05-07 12:39:19 (GMT) |
commit | 86832cecd59b3a56c5a609742b43e5b1c9524c66 (patch) | |
tree | 58a3c1ffe0165159da6c13206c8b8d527df8dbbb /Source/cmake.cxx | |
parent | b7593bf3f5a656c6c2651d31c6858ad0e35f01d9 (diff) | |
download | CMake-86832cecd59b3a56c5a609742b43e5b1c9524c66.zip CMake-86832cecd59b3a56c5a609742b43e5b1c9524c66.tar.gz CMake-86832cecd59b3a56c5a609742b43e5b1c9524c66.tar.bz2 |
Fix spelling and typos (affecting users)
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index e2f80d1..ca6b661 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -128,7 +128,7 @@ void cmNeedBackwardsCompatibility(const std::string& variable, "by CMake in versions prior to 1.6. To fix this you might need to set " "the cache value of CMAKE_BACKWARDS_COMPATIBILITY to 1.4 or less. If " "you are writing a CMakeLists file, (or have already set " - "CMAKE_BACKWARDS_COMPATABILITY to 1.4 or less) then you probably need " + "CMAKE_BACKWARDS_COMPATIBILITY to 1.4 or less) then you probably need " "to include a CMake module to test for the feature this variable " "defines."; cmSystemTools::Error(message.c_str()); @@ -4045,7 +4045,7 @@ static bool cmakeCheckStampFile(const char* stampName) // TODO: Teach cmGeneratedFileStream to use a random temp file (with // multiple tries in unlikely case of conflict) and use that here. std::ofstream stamp(stampTemp); - stamp << "# CMake generation timestamp file this directory.\n"; + stamp << "# CMake generation timestamp file for this directory.\n"; } if(cmSystemTools::RenameFile(stampTemp, stampName)) { |