Fix problem when using NMake. This generated lines without space so nmake got all confused

This commit is contained in:
Andy Cedilnik 2002-07-10 09:33:17 -04:00
parent ab4e894b92
commit 9f6ebe4eb7
1 changed files with 1 additions and 1 deletions

View File

@ -819,7 +819,7 @@ void cmUnixMakefileGenerator::OutputUtilityRule(std::ostream& fout,
for(std::vector<std::string>::const_iterator d = dep.begin();
d != dep.end(); ++d)
{
depends += "\\\n";
depends += " \\\n";
depends += *d;
}
}