diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-03-17 14:33:54 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-03-17 14:33:54 (GMT) |
commit | 10e6f1e716758c5ad5dcb63a5c69551ff3b9f6ff (patch) | |
tree | 89749d23defed2ddac5a774e7c72b2ef389d3c31 /Source/cmMakefile.cxx | |
parent | c3a2f78b5a322bd14123cb301dc62dc3b58073b5 (diff) | |
download | CMake-10e6f1e716758c5ad5dcb63a5c69551ff3b9f6ff.zip CMake-10e6f1e716758c5ad5dcb63a5c69551ff3b9f6ff.tar.gz CMake-10e6f1e716758c5ad5dcb63a5c69551ff3b9f6ff.tar.bz2 |
cmMakefile: Fix typo in comment.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 58625fb..f312399 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -2071,7 +2071,7 @@ cmMakefile::LinearGetSourceFileWithOutput(const std::string& name) const // does this source file have a custom command? if ((*i)->GetCustomCommand()) { - // is the output of the custom command match the source files name + // Does the output of the custom command match the source file name? const std::vector<std::string>& outputs = (*i)->GetCustomCommand()->GetOutputs(); for(std::vector<std::string>::const_iterator o = outputs.begin(); |