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

This commit is contained in:
Martin v. Löwis 2012-05-31 21:58:21 +02:00
parent c11eba87d1
commit 4b10e1978c
1 changed files with 1 additions and 1 deletions

View File

@ -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)