summaryrefslogtreecommitdiffstats
path: root/Source/cmUnixMakefileGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-04-17 18:39:32 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-04-17 18:39:32 (GMT)
commit29f7c0ff03a3df7b9402acb2b6d65a9a7eacd82d (patch)
tree7b15f256271d59cb61e640aa9691a1ad9a23c61a /Source/cmUnixMakefileGenerator.cxx
parente9907e51a950677621e87cdf2dbe493a7e32fe13 (diff)
downloadCMake-29f7c0ff03a3df7b9402acb2b6d65a9a7eacd82d.zip
CMake-29f7c0ff03a3df7b9402acb2b6d65a9a7eacd82d.tar.gz
CMake-29f7c0ff03a3df7b9402acb2b6d65a9a7eacd82d.tar.bz2
ENH: use convert to output path for depend files
Diffstat (limited to 'Source/cmUnixMakefileGenerator.cxx')
-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());
}
}
}