diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2012-05-31 19:58:21 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2012-05-31 19:58:21 (GMT) |
commit | 4b10e1978c0b74f48c9a0677ebe91d86d34527cb (patch) | |
tree | aa486fb6d0da1178c8b40da218a93224c4f17ac6 /Tools/msi | |
parent | c11eba87d1988512de6809b6d58b49cf944d1353 (diff) | |
download | cpython-4b10e1978c0b74f48c9a0677ebe91d86d34527cb.zip cpython-4b10e1978c0b74f48c9a0677ebe91d86d34527cb.tar.gz cpython-4b10e1978c0b74f48c9a0677ebe91d86d34527cb.tar.bz2 |
VS 2010 has the AMD64 redist files in VC\redist\x64.
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/msi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 8e2f5a3..b2482df 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -875,7 +875,7 @@ def add_features(db): def extract_msvcr100(): # Find the redistributable files if msilib.Win64: - arch = "amd64" + arch = "x64" else: arch = "x86" dir = os.path.join(os.environ['VS100COMNTOOLS'], r"..\..\VC\redist\%s\Microsoft.VC100.CRT" % arch) |