diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-10-02 15:35:29 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-10-02 15:35:29 (GMT) |
commit | 25b5897ffa5d0d1fe25b88a03636a9234f32fb3e (patch) | |
tree | f26215f800ecbedadf53d07bef5ba4eced2000de /Source/cmLocalBorlandMakefileGenerator.cxx | |
parent | 8cac76825f335148548bb2bb1491b1a220de6187 (diff) | |
download | CMake-25b5897ffa5d0d1fe25b88a03636a9234f32fb3e.zip CMake-25b5897ffa5d0d1fe25b88a03636a9234f32fb3e.tar.gz CMake-25b5897ffa5d0d1fe25b88a03636a9234f32fb3e.tar.bz2 |
Remove unnecessary new line
Diffstat (limited to 'Source/cmLocalBorlandMakefileGenerator.cxx')
-rw-r--r-- | Source/cmLocalBorlandMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalBorlandMakefileGenerator.cxx b/Source/cmLocalBorlandMakefileGenerator.cxx index 97c7424..16e311c 100644 --- a/Source/cmLocalBorlandMakefileGenerator.cxx +++ b/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); |