mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Merged revisions 66516 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r66516 | martin.v.loewis | 2008-09-19 21:20:03 +0200 (Fr, 19 Sep 2008) | 1 line Use AMD64 version of CRT in just-for-me installations for Win64 installers. ........
This commit is contained in:
parent
df014bf604
commit
8a2e90e5e7
1 changed files with 5 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue