浏览代码

Remove unnecessary new line

Ken Martin 23 年之前
父节点
当前提交
25b5897ffa
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Source/cmLocalBorlandMakefileGenerator.cxx

+ 1 - 1
Source/cmLocalBorlandMakefileGenerator.cxx

@@ -280,7 +280,7 @@ void cmLocalBorlandMakefileGenerator::OutputStaticLibraryRule(std::ostream& fout
 
   command += " $(";
   command += this->CreateMakeVariable(name, "_SRC_OBJS_QUOTED") + ")";
-  command += "\n|\n";
+  command += "\n|";
   std::string comment = "rule to build static library: ";
   comment += name;
   std::string customCommands = this->CreateTargetRules(t, name);