summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmUnixMakefileGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx
index d126605..179efed 100644
--- a/Source/cmUnixMakefileGenerator.cxx
+++ b/Source/cmUnixMakefileGenerator.cxx
@@ -1804,7 +1804,7 @@ void cmUnixMakefileGenerator::OutputMakeRules(std::ostream& fout)
if(!(*source)->IsAHeaderFileOnly())
{
allsources += " \\\n";
- allsources += (*source)->GetFullPath();
+ allsources += this->ConvertToOutputPath((*source)->GetFullPath().c_str());
}
}
}