diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-17 18:39:32 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-17 18:39:32 (GMT) |
commit | 29f7c0ff03a3df7b9402acb2b6d65a9a7eacd82d (patch) | |
tree | 7b15f256271d59cb61e640aa9691a1ad9a23c61a /Source/cmUnixMakefileGenerator.cxx | |
parent | e9907e51a950677621e87cdf2dbe493a7e32fe13 (diff) | |
download | CMake-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.cxx | 2 |
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()); } } } |