diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-01-20 19:36:00 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-01-20 19:36:00 (GMT) |
commit | 7f018b58acc07f9924c4c48bfc6f826b33684d09 (patch) | |
tree | 5e4b4855eb90259b99d40df94973262310f4222e /Source/cmLocalUnixMakefileGenerator.cxx | |
parent | 1690c45626fb2bbe8176b6944a5dfb040952b86f (diff) | |
download | CMake-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.cxx | 2 |
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); } |