diff options
author | Brent Eagles <brent@zeroc.com> | 2006-06-21 12:49:49 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2006-06-21 12:49:49 +0000 |
commit | 3b6b317d2fb2624b5f4f6ec2ce4eb49db650baa7 (patch) | |
tree | 1901c53e636d4f95ffe9634a43360ece5364d3cf /cpp/install/common/makewindist.py | |
parent | AIX bug fix (diff) | |
download | ice-3b6b317d2fb2624b5f4f6ec2ce4eb49db650baa7.tar.bz2 ice-3b6b317d2fb2624b5f4f6ec2ce4eb49db650baa7.tar.xz ice-3b6b317d2fb2624b5f4f6ec2ce4eb49db650baa7.zip |
fixes
Diffstat (limited to 'cpp/install/common/makewindist.py')
-rwxr-xr-x | cpp/install/common/makewindist.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/install/common/makewindist.py b/cpp/install/common/makewindist.py index 2cdbac7ea20..599368f9dfb 100755 --- a/cpp/install/common/makewindist.py +++ b/cpp/install/common/makewindist.py @@ -645,6 +645,11 @@ def main(): defaults['dbver'] = '43' defaults['version'] = sourcesVersion defaults['dllversion'] = sourcesVersion.replace('.', '')[:2] + + if target == "vc80_x64": + defaults['OutDir'] = "x64/" + else: + defaults['OutDir'] = '' if os.path.exists(stageDir): try: |