summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-01-20 19:36:00 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-01-20 19:36:00 (GMT)
commit7f018b58acc07f9924c4c48bfc6f826b33684d09 (patch)
tree5e4b4855eb90259b99d40df94973262310f4222e /Source/cmLocalUnixMakefileGenerator.cxx
parent1690c45626fb2bbe8176b6944a5dfb040952b86f (diff)
downloadCMake-7f018b58acc07f9924c4c48bfc6f826b33684d09.zip
CMake-7f018b58acc07f9924c4c48bfc6f826b33684d09.tar.gz
CMake-7f018b58acc07f9924c4c48bfc6f826b33684d09.tar.bz2
ENH: bug fix for IBM broken xlC 6.0.0.4 compiler
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
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);
}