summaryrefslogtreecommitdiffstats
path: root/Source/cmFindPackageCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-06-09 15:57:56 (GMT)
committerBrad King <brad.king@kitware.com>2008-06-09 15:57:56 (GMT)
commitd53e5dec3748e1d800dae595dcb78f2c4d55f788 (patch)
treed53cc056e338a02277753caabfe5ae5bb7a41170 /Source/cmFindPackageCommand.cxx
parent3446bab75eb9a686841ec9bf6683beac603cbde5 (diff)
downloadCMake-d53e5dec3748e1d800dae595dcb78f2c4d55f788.zip
CMake-d53e5dec3748e1d800dae595dcb78f2c4d55f788.tar.gz
CMake-d53e5dec3748e1d800dae595dcb78f2c4d55f788.tar.bz2
ENH: In find_* implementation centralize addition of trailing slashes
- Create cmFindCommon::AddTrailingSlashes - Use it in cmFindBase and cmFindPackageCommand - Remove duplication from other find commands
Diffstat (limited to 'Source/cmFindPackageCommand.cxx')
-rw-r--r--Source/cmFindPackageCommand.cxx10
1 files changed, 1 insertions, 9 deletions
diff --git a/Source/cmFindPackageCommand.cxx b/Source/cmFindPackageCommand.cxx
index 5cc1724..426d3df 100644
--- a/Source/cmFindPackageCommand.cxx
+++ b/Source/cmFindPackageCommand.cxx
@@ -1067,15 +1067,7 @@ void cmFindPackageCommand::ComputeFinalPrefixes()
this->RerootPaths(prefixes);
// Add a trailing slash to all prefixes to aid the search process.
- for(std::vector<std::string>::iterator i = prefixes.begin();
- i != prefixes.end(); ++i)
- {
- std::string& prefix = *i;
- if(prefix[prefix.size()-1] != '/')
- {
- prefix += "/";
- }
- }
+ this->AddTrailingSlashes(prefixes);
}
//----------------------------------------------------------------------------