Kaydet (Commit) e1d9dca7 authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Use AMD64 version of CRT in just-for-me installations for Win64 installers.

üst 175d0078
......@@ -843,7 +843,11 @@ def add_features(db):
def extract_msvcr90():
# Find the redistributable files
dir = os.path.join(os.environ['VS90COMNTOOLS'], r"..\..\VC\redist\x86\Microsoft.VC90.CRT")
if msilib.Win64:
arch = "amd64"
else:
arch = "x86"
dir = os.path.join(os.environ['VS90COMNTOOLS'], r"..\..\VC\redist\%s\Microsoft.VC90.CRT" % arch)
result = []
installer = msilib.MakeInstaller()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment