diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-01-08 22:18:51 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-01-08 22:18:51 (GMT) |
commit | ddc6117574e1072600cc8f6fd4303f538cddba27 (patch) | |
tree | d43627275b8b11e6e0cd845a53b7a7d89fcb39c1 /Source/cmBorlandMakefileGenerator.cxx | |
parent | bc1742dd60172949928abd1981ba4045219a5679 (diff) | |
download | CMake-ddc6117574e1072600cc8f6fd4303f538cddba27.zip CMake-ddc6117574e1072600cc8f6fd4303f538cddba27.tar.gz CMake-ddc6117574e1072600cc8f6fd4303f538cddba27.tar.bz2 |
BUG: need a larger default page size
Diffstat (limited to 'Source/cmBorlandMakefileGenerator.cxx')
-rw-r--r-- | Source/cmBorlandMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmBorlandMakefileGenerator.cxx b/Source/cmBorlandMakefileGenerator.cxx index c3a8ac9..abb33b5 100644 --- a/Source/cmBorlandMakefileGenerator.cxx +++ b/Source/cmBorlandMakefileGenerator.cxx @@ -312,7 +312,7 @@ void cmBorlandMakefileGenerator::OutputStaticLibraryRule(std::ostream& fout, target = cmSystemTools::EscapeSpaces(target.c_str()); std::string depend = "$("; depend += std::string(name) + "_SRC_OBJS)"; - std::string command = "tlib @&&|\n\t /p256 /a "; + std::string command = "tlib @&&|\n\t /p512 /a "; command += target; command += " "; std::string deleteCommand = "if exist "; |