summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-10-31 07:20:44 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-10-31 07:20:44 +0000
commit14e7fa0393575e6d503e44347510648e378727da (patch)
tree6144878fe3a4c4178d5b2ad8fa5cb03ab28cc3fa /SConstruct
parent17f3f3c34ec3647f0d43808f743a8062bd708513 (diff)
downloadscons-14e7fa0393575e6d503e44347510648e378727da.tar.gz
BUG: fix bootstrap on windows 64.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 4 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index c4ce97e5..b52acaf6 100644
--- a/SConstruct
+++ b/SConstruct
@@ -721,7 +721,10 @@ for p in [ scons ]:
platform_zip = os.path.join(build,
'dist',
"%s.%s.zip" % (pkg_version, platform))
- win32_exe = os.path.join(build, 'dist', "%s.win32.exe" % pkg_version)
+ if platform == "win-amd64":
+ win32_exe = os.path.join(build, 'dist', "%s.win-amd64.exe" % pkg_version)
+ else:
+ win32_exe = os.path.join(build, 'dist', "%s.win32.exe" % pkg_version)
#
# Update the environment with the relevant information