diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-10-28 16:06:06 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-10-28 16:06:06 (GMT) |
commit | 3e2c1f347701155f2713ab144f3c7b3cf00d8aca (patch) | |
tree | 8d8b7b5a6cb31a3f0b3255c37769e274ea0e9a4f /Source/cmGlobalBorlandMakefileGenerator.cxx | |
parent | 032883cc348fad280ada33bcaa4598e0fcea7dd3 (diff) | |
download | CMake-3e2c1f347701155f2713ab144f3c7b3cf00d8aca.zip CMake-3e2c1f347701155f2713ab144f3c7b3cf00d8aca.tar.gz CMake-3e2c1f347701155f2713ab144f3c7b3cf00d8aca.tar.bz2 |
BUG: fix for bug 303 pass makeflags to sub makes
Diffstat (limited to 'Source/cmGlobalBorlandMakefileGenerator.cxx')
-rw-r--r-- | Source/cmGlobalBorlandMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalBorlandMakefileGenerator.cxx b/Source/cmGlobalBorlandMakefileGenerator.cxx index cc384da..6857219 100644 --- a/Source/cmGlobalBorlandMakefileGenerator.cxx +++ b/Source/cmGlobalBorlandMakefileGenerator.cxx @@ -55,7 +55,7 @@ cmLocalGenerator *cmGlobalBorlandMakefileGenerator::CreateLocalGenerator() lg->SetIncludeDirective("!include"); lg->SetWindowsShell(true); lg->SetMakefileVariableSize(32); - + lg->SetPassMakeflags(true); lg->SetGlobalGenerator(this); return lg; } |