diff options
author | Brad King <brad.king@kitware.com> | 2013-01-24 13:25:53 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-01-24 13:25:53 (GMT) |
commit | 907f1e22271079eb2531c3e0b76b9c742c698197 (patch) | |
tree | 987bb320af58d0aa6f25bbe6c6f73a3abdd2833f /Source/cmMakefile.cxx | |
parent | 2cf9642e9ca70f005e3ea59ab219afe8d16b31fc (diff) | |
parent | 3853a6c3a7210c29f82fd27f9d2f6e99eb18e1ba (diff) | |
download | CMake-907f1e22271079eb2531c3e0b76b9c742c698197.zip CMake-907f1e22271079eb2531c3e0b76b9c742c698197.tar.gz CMake-907f1e22271079eb2531c3e0b76b9c742c698197.tar.bz2 |
Merge topic 'cmMakefile-comment-typos'
3853a6c 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 4721e4c..e7a1500 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -2260,7 +2260,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()) ) { @@ -2271,8 +2271,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, |