diff options
author | Yury G. Kudryashov <urkud.urkud@gmail.com> | 2013-01-22 02:44:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-01-23 15:51:31 (GMT) |
commit | 3853a6c3a7210c29f82fd27f9d2f6e99eb18e1ba (patch) | |
tree | b63df3a565cec34bc9ffb904e00d13d4c1dbe307 /Source/cmMakefile.cxx | |
parent | 3ded614e31e9dcc4afa3ee9885dadf830a05dd21 (diff) | |
download | CMake-3853a6c3a7210c29f82fd27f9d2f6e99eb18e1ba.zip CMake-3853a6c3a7210c29f82fd27f9d2f6e99eb18e1ba.tar.gz CMake-3853a6c3a7210c29f82fd27f9d2f6e99eb18e1ba.tar.bz2 |
spell: fix a few typos in comments
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index b432986..d1dc5a2 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -2243,7 +2243,7 @@ bool cmMakefile::CanIWriteThisFile(const char* fileName) { return true; } - // If we are doing an in-source build, than the test will always fail + // If we are doing an in-source build, then the test will always fail if ( cmSystemTools::SameFile(this->GetHomeDirectory(), this->GetHomeOutputDirectory()) ) { @@ -2254,8 +2254,8 @@ bool cmMakefile::CanIWriteThisFile(const char* fileName) return true; } - // Check if this is subdirectory of the source tree but not a - // subdirectory of a build tree + // Check if this is a subdirectory of the source tree but not a + // subdirectory of the build tree if ( cmSystemTools::IsSubDirectory(fileName, this->GetHomeDirectory()) && !cmSystemTools::IsSubDirectory(fileName, |