ENH: bug fix for IBM broken xlC 6.0.0.4 compiler

This commit is contained in:
Bill Hoffman 2004-01-20 14:36:00 -05:00
parent 1690c45626
commit 7f018b58ac
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ cmLocalUnixMakefileGenerator::AddDependenciesToSourceFile(cmDependInformation co
{
if((*d)->m_FullPath != "")
{
i->GetDepends().push_back((*d)->m_FullPath);
i->GetDepends().push_back((*d)->m_FullPath.c_str());
}
this->AddDependenciesToSourceFile(*d,i,visited);
}