ENH: use convert to output path for depend files

This commit is contained in:
Bill Hoffman 2002-04-17 14:39:32 -04:00
parent e9907e51a9
commit 29f7c0ff03
1 changed files with 1 additions and 1 deletions

View File

@ -1804,7 +1804,7 @@ void cmUnixMakefileGenerator::OutputMakeRules(std::ostream& fout)
if(!(*source)->IsAHeaderFileOnly())
{
allsources += " \\\n";
allsources += (*source)->GetFullPath();
allsources += this->ConvertToOutputPath((*source)->GetFullPath().c_str());
}
}
}