diff options
author | Craig Scott <craig.scott@crascit.com> | 2018-08-15 12:18:42 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-08-15 12:18:49 (GMT) |
commit | 349f8bfb25349892fb2c4e5a9942e4bd63f86f49 (patch) | |
tree | 55905fefe820c132d893024308b03586d35c13c4 /Source | |
parent | a6f7a01f3acb97f9e7fd48705aca33a19564671f (diff) | |
parent | 30d08bdce92960caa3fc68a3de95fffdf569e97b (diff) | |
download | CMake-349f8bfb25349892fb2c4e5a9942e4bd63f86f49.zip CMake-349f8bfb25349892fb2c4e5a9942e4bd63f86f49.tar.gz CMake-349f8bfb25349892fb2c4e5a9942e4bd63f86f49.tar.bz2 |
Merge topic 'doc-consistently-reference-packagename'
30d08bdce9 doc: Consistently use <PackageName> for describing the name of a package
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2283
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmFindPackageCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmFindPackageCommand.cxx b/Source/cmFindPackageCommand.cxx index 598b9b6..96de6ad 100644 --- a/Source/cmFindPackageCommand.cxx +++ b/Source/cmFindPackageCommand.cxx @@ -487,7 +487,7 @@ bool cmFindPackageCommand::InitialPass(std::vector<std::string> const& args, this->SetModuleVariables(components); - // See if there is a Find<package>.cmake module. + // See if there is a Find<PackageName>.cmake module. if (this->UseFindModules) { bool foundModule = false; if (!this->FindModule(foundModule)) { @@ -538,7 +538,7 @@ bool cmFindPackageCommand::InitialPass(std::vector<std::string> const& args, } // No find module. Assume the project has a CMake config file. Use - // a <package>_DIR cache variable to locate it. + // a <PackageName>_DIR cache variable to locate it. this->Variable = this->Name; this->Variable += "_DIR"; |