summaryrefslogtreecommitdiffstats
path: root/Source/cmBorlandMakefileGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-02-18 19:09:03 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-02-18 19:09:03 (GMT)
commit12c5f0fa26ab3b90d13cd872ca7f0ea582e1cebc (patch)
tree8ba1e55adcb81bc0a2cd14897f0c5a047ee5489a /Source/cmBorlandMakefileGenerator.cxx
parent142119be9535ae1ef109595fdd83c0d929133834 (diff)
downloadCMake-12c5f0fa26ab3b90d13cd872ca7f0ea582e1cebc.zip
CMake-12c5f0fa26ab3b90d13cd872ca7f0ea582e1cebc.tar.gz
CMake-12c5f0fa26ab3b90d13cd872ca7f0ea582e1cebc.tar.bz2
ENH: fix for borland tlib files with dash in them problem.
Diffstat (limited to 'Source/cmBorlandMakefileGenerator.cxx')
-rw-r--r--Source/cmBorlandMakefileGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmBorlandMakefileGenerator.cxx b/Source/cmBorlandMakefileGenerator.cxx
index f8f0a9a..01fae24 100644
--- a/Source/cmBorlandMakefileGenerator.cxx
+++ b/Source/cmBorlandMakefileGenerator.cxx
@@ -303,7 +303,7 @@ void cmBorlandMakefileGenerator::OutputStaticLibraryRule(std::ostream& fout,
deleteCommand += target;
command += " $(";
- command += std::string(name) + "_SRC_OBJS)";
+ command += std::string(name) + "_SRC_OBJS_QUOTED)";
command += "\n|\n";
std::string comment = "rule to build static library: ";
comment += name;