Browse Source

ENH: bug fix for IBM broken xlC 6.0.0.4 compiler

Bill Hoffman 22 years ago
parent
commit
7f018b58ac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmLocalUnixMakefileGenerator.cxx

+ 1 - 1
Source/cmLocalUnixMakefileGenerator.cxx

@@ -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);
       }