From: Martin v. Löwis Date: Thu, 31 May 2012 19:58:21 +0000 (+0200) Subject: VS 2010 has the AMD64 redist files in VC\redist\x64. X-Git-Tag: v3.3.0b1~325 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4b10e1978c0b74f48c9a0677ebe91d86d34527cb;p=python VS 2010 has the AMD64 redist files in VC\redist\x64. --- diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 8e2f5a3f81..b2482df85d 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)