summaryrefslogtreecommitdiff
path: root/Source/cmFindPathCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-06-09 11:57:56 -0400
committerBrad King <brad.king@kitware.com>2008-06-09 11:57:56 -0400
commitd53e5dec3748e1d800dae595dcb78f2c4d55f788 (patch)
treed53cc056e338a02277753caabfe5ae5bb7a41170 /Source/cmFindPathCommand.cxx
parent3446bab75eb9a686841ec9bf6683beac603cbde5 (diff)
downloadcmake-d53e5dec3748e1d800dae595dcb78f2c4d55f788.tar.gz
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/cmFindPathCommand.cxx')
-rw-r--r--Source/cmFindPathCommand.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/cmFindPathCommand.cxx b/Source/cmFindPathCommand.cxx
index c04594ac6b..e22b122006 100644
--- a/Source/cmFindPathCommand.cxx
+++ b/Source/cmFindPathCommand.cxx
@@ -102,16 +102,6 @@ bool cmFindPathCommand
supportFrameworks = false;
}
std::string framework;
- // Add a trailing slash to all paths to aid the search process.
- for(std::vector<std::string>::iterator i = this->SearchPaths.begin();
- i != this->SearchPaths.end(); ++i)
- {
- std::string& p = *i;
- if(p.empty() || p[p.size()-1] != '/')
- {
- p += "/";
- }
- }
// Use the search path to find the file.
unsigned int k;
std::string result;