Explorar o código

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

Andy Cedilnik %!s(int64=23) %!d(string=hai) anos
pai
achega
9f6ebe4eb7
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Source/cmUnixMakefileGenerator.cxx

+ 1 - 1
Source/cmUnixMakefileGenerator.cxx

@@ -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;
 	}
     }