summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
}