diff options
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, |