[Python-checkins] r66722 - python/trunk/Tools/msi/merge.py

martin.v.loewis python-checkins at python.org
Thu Oct 2 13:44:18 CEST 2008


Author: martin.v.loewis
Date: Thu Oct  2 13:44:17 2008
New Revision: 66722

Log:
Use CRT 9 policy files.

Modified:
   python/trunk/Tools/msi/merge.py

Modified: python/trunk/Tools/msi/merge.py
==============================================================================
--- python/trunk/Tools/msi/merge.py	(original)
+++ python/trunk/Tools/msi/merge.py	Thu Oct  2 13:44:17 2008
@@ -9,10 +9,10 @@
 if len(sys.argv)==2:
     msi = sys.argv[1]
 if Win64:
-    modules = ["Microsoft_VC90_CRT_x86_x64.msm", "policy_8_0_Microsoft_VC80_CRT_x86_x64.msm"]
+    modules = ["Microsoft_VC90_CRT_x86_x64.msm", "policy_9_0_Microsoft_VC90_CRT_x86_x64.msm"]
     if not msi: msi = "python-%s.amd64.msi" % full_current_version
 else:
-    modules = ["Microsoft_VC90_CRT_x86.msm","policy_8_0_Microsoft_VC80_CRT_x86.msm"]
+    modules = ["Microsoft_VC90_CRT_x86.msm","policy_9_0_Microsoft_VC90_CRT_x86.msm"]
     if not msi: msi = "python-%s.msi" % full_current_version
 for i, n in enumerate(modules):
     modules[i] = os.path.join(mod_dir, n)


More information about the Python-checkins mailing list