From ddc6117574e1072600cc8f6fd4303f538cddba27 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 8 Jan 2002 17:18:51 -0500 Subject: [PATCH] BUG: need a larger default page size --- Source/cmBorlandMakefileGenerator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmBorlandMakefileGenerator.cxx b/Source/cmBorlandMakefileGenerator.cxx index c3a8ac92d..abb33b58e 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 ";