BUG: During relative path conversion if the remote and target paths are the same return the empty string instead of ".".
This commit is contained in:
parent
770ffb1699
commit
a724f0d425
|
@ -2222,11 +2222,11 @@ cmLocalGenerator
|
|||
return in_remote;
|
||||
}
|
||||
|
||||
// If the entire path is in common then just return a ".".
|
||||
// If the entire path is in common then just return an empty string.
|
||||
if(common == remote.size() &&
|
||||
common == local.size())
|
||||
{
|
||||
return ".";
|
||||
return "";
|
||||
}
|
||||
|
||||
// If the entire path is in common except for a trailing slash then
|
||||
|
|
Loading…
Reference in New Issue