From 7f018b58acc07f9924c4c48bfc6f826b33684d09 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 20 Jan 2004 14:36:00 -0500 Subject: ENH: bug fix for IBM broken xlC 6.0.0.4 compiler --- Source/cmLocalUnixMakefileGenerator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index 84635ea..84371a0 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/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); } -- cgit v0.12