瀏覽代碼

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

Andy Cedilnik 23 年之前
父節點
當前提交
9f6ebe4eb7
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;
 	}
     }