Преглед на файлове

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);