diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-23 16:18:51 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-23 16:18:51 (GMT) |
commit | b3b3281b7f4f52419d511a4025a4e45959c92732 (patch) | |
tree | 49e61fec0821d2932ad4e3658ab11d0139e3a50d /Source/cmUnixMakefileGenerator.cxx | |
parent | 361f17802f179c6313004475f43c32b617dd0277 (diff) | |
download | CMake-b3b3281b7f4f52419d511a4025a4e45959c92732.zip CMake-b3b3281b7f4f52419d511a4025a4e45959c92732.tar.gz CMake-b3b3281b7f4f52419d511a4025a4e45959c92732.tar.bz2 |
ENH: clean up depend output
Diffstat (limited to 'Source/cmUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmUnixMakefileGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index 133d4c5..5ca3b20 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -808,7 +808,8 @@ void cmUnixMakefileGenerator::OutputUtilityRule(std::ostream& fout, for(std::vector<std::string>::const_iterator d = dep.begin(); d != dep.end(); ++d) { - depends += *d + "\\\n"; + depends += "\\\n"; + depends += *d; } } this->OutputMakeRule(fout, |