diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-04-12 13:12:01 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-04-12 13:12:01 (GMT) |
commit | 0cae8768676f9c6094eb92da6c9727a0970b3593 (patch) | |
tree | cd6ab9ba1b06c1c266d44e9c354e2017801be65a /Source/cmDocumentation.cxx | |
parent | 1f5f2ce85f50faed6f1f6acd2eb8436e241f210c (diff) | |
download | CMake-0cae8768676f9c6094eb92da6c9727a0970b3593.zip CMake-0cae8768676f9c6094eb92da6c9727a0970b3593.tar.gz CMake-0cae8768676f9c6094eb92da6c9727a0970b3593.tar.bz2 |
ENH: case insensitive command help
Diffstat (limited to 'Source/cmDocumentation.cxx')
-rw-r--r-- | Source/cmDocumentation.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmDocumentation.cxx b/Source/cmDocumentation.cxx index 54684b8..168774a 100644 --- a/Source/cmDocumentation.cxx +++ b/Source/cmDocumentation.cxx @@ -434,6 +434,7 @@ bool cmDocumentation::CheckOptions(int argc, const char* const* argv) if((i+1 < argc) && !this->IsOption(argv[i+1])) { this->SingleCommand = argv[i+1]; + this->SingleCommand = cmSystemTools::UpperCase(this->SingleCommand); i = i+1; } } |