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:
Brad King 2007-03-14 13:36:24 -04:00
parent 770ffb1699
commit a724f0d425
1 changed files with 2 additions and 2 deletions

View File

@ -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