BUG: Need to collapse full paths before depending on them to remove ./ and ../ to make sure target names match.

This commit is contained in:
Brad King 2005-03-17 18:37:36 -05:00
parent 1568f73825
commit 2a5f8796e7
1 changed files with 1 additions and 1 deletions

View File

@ -2598,7 +2598,7 @@ cmLocalUnixMakefileGenerator2
else if(cmSystemTools::FileIsFullPath(name))
{
// This is a path to a file. Just trust that it will be present.
depends.push_back(name);
depends.push_back(cmSystemTools::CollapseFullPath(name));
}
}