cpython: VS 2010 has the AMD64 redist files in VC\redist\x64.

http://hg.python.org/cpython/rev/7528b178692e changeset: 77271:7528b178692e user: Martin v. Löwis <martin@v.loewis.de> date: Thu May 31 21:58:21 2012 +0200 summary: VS 2010 has the AMD64 redist files in VC\redist\x64. files: Tools/msi/msi.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -875,7 +875,7 @@ 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) -- Repository URL: http://hg.python.org/cpython
participants (1)
-
martin.v.loewis