diff options
Diffstat (limited to 'distribution/bin/makemsi.py')
-rwxr-xr-x | distribution/bin/makemsi.py | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/distribution/bin/makemsi.py b/distribution/bin/makemsi.py index 2234b2aef36..e856f30d8ae 100755 --- a/distribution/bin/makemsi.py +++ b/distribution/bin/makemsi.py @@ -374,7 +374,7 @@ def main(): try: optionList, args = getopt.getopt( sys.argv[1:], "dhil:", [ "help", "clean", "skip-build", "skip-installer", "info", "debug", - "logfile", "vc60", "vc80", "vc90", "bcc2007", "bcc2009", "thirdpartyhome=", "sources=", "buildDir=", "pfxfile=", "pfxpassword="]) + "logfile", "vc60", "vc80", "vc90", "thirdpartyhome=", "sources=", "buildDir=", "pfxfile=", "pfxpassword="]) except getopt.GetoptError: usage() sys.exit(2) @@ -411,10 +411,6 @@ def main(): target = 'vc80' elif o == '--vc90': target = 'vc90' - elif o == '--bcc2007': - target = 'bcc2007' - elif o == '--bcc2009': - target = 'bcc2009' elif o == '--pfxfile': os.environ['PFX_FILE'] = a elif o == '--pfxpassword': @@ -486,11 +482,7 @@ def main(): else: defaults['installdir'] = "C:\\Ice-%s-%s" % (iceVersion, target.upper()) - if target == 'bcc2007' or target == 'bcc2009': - defaults['pdb'] = 'tds' - else: - defaults['pdb'] = 'pdb' - + defaults['pdb'] = 'pdb' defaults['OutDir'] = '' defaults['timeStampingURL'] = timeStampingURL @@ -575,12 +567,6 @@ libraries.""" if build: buildIceDists(stageDir, buildDir, iceVersion, target) - if target == "bcc2007": - setDefaultCompiler(os.path.join(buildDir, "release", "Ice-%s" % iceVersion, "cpp", "config", "Make.rules.mak"), "BCC2007") - - if target == "bcc2009": - setDefaultCompiler(os.path.join(buildDir, "release", "Ice-%s" % iceVersion, "cpp", "config", "Make.rules.mak"), "BCC2009") - # # Stage Ice! # |