ENH: better fix for not adding /
This commit is contained in:
parent
c3bc99d5a1
commit
60e0c7ed9c
|
@ -378,13 +378,10 @@ void cmFindBase::AddFindPrefix(std::vector<std::string>& dest,
|
||||||
{
|
{
|
||||||
dir += "/";
|
dir += "/";
|
||||||
}
|
}
|
||||||
if(subdir != "/")
|
std::string add = dir + subdir;
|
||||||
|
if(add != "/")
|
||||||
{
|
{
|
||||||
std::string add = dir + subdir;
|
dest.push_back(add);
|
||||||
if(add != "/")
|
|
||||||
{
|
|
||||||
dest.push_back(add);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (subdir == "bin")
|
if (subdir == "bin")
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue