diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2005-03-14 17:20:13 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2005-03-14 17:20:13 (GMT) |
commit | 3390d33dd7d1fe4ce08a90f3a7f8759dfa101387 (patch) | |
tree | 6bebe389782f73b3f05981d0f8b43a9da3d8442d /Tools | |
parent | 8e628d2342de84e45bef4b944c615948e944913c (diff) | |
download | cpython-3390d33dd7d1fe4ce08a90f3a7f8759dfa101387.zip cpython-3390d33dd7d1fe4ce08a90f3a7f8759dfa101387.tar.gz cpython-3390d33dd7d1fe4ce08a90f3a7f8759dfa101387.tar.bz2 |
Add more UUIDs. Update custom actions for Itanium.
Backported to 2.4
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index bd23f96..7eced6f 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -81,6 +81,11 @@ product_codes = { '2.4.121': '{75508821-a8e9-40a8-95bd-dbe6033ddbea}', # 2.4c1 '2.4.122': '{83a9118b-4bdd-473b-afc3-bcb142feca9e}', # 2.4c2 '2.4.150': '{82d9302e-f209-4805-b548-52087047483a}', # 2.4.0 + '2.4.1121':'{be027411-8e6b-4440-a29b-b07df0690230}', # 2.4.1c1 + '2.4.1122':'{02818752-48bf-4074-a281-7a4114c4f1b1}', # 2.4.1c2 + '2.4.1150':'{4d4f5346-7e4a-40b5-9387-fdb6181357fc}', # 2.4.1 + '2.4.2121':'{5ef9d6b6-df78-45d2-ab09-14786a3c5a99}', # 2.4.2c1 + '2.4.2150':'{b191e49c-ea23-43b2-b28a-14e0784069b8}', # 2.4.2 } if snapshot: @@ -346,11 +351,17 @@ def add_ui(db): raise "'nmake /f msisupport.mak' failed" add_data(db, "Binary", [("Script", msilib.Binary("msisupport.dll"))]) # See "Custom Action Type 1" + if msilib.Win64: + CheckDir = "CheckDir" + UpdateEditIdle = "UpdateEditIDLE" + else: + CheckDir = "_CheckDir@4" + UpdateEditIDLE = "_UpdateEditIDLE@4" add_data(db, "CustomAction", - [("CheckDir", 1, "Script", "_CheckDir@4")]) + [("CheckDir", 1, "Script", CheckDir)]) if have_tcl: add_data(db, "CustomAction", - [("UpdateEditIDLE", 1, "Script", "_UpdateEditIDLE@4")]) + [("UpdateEditIDLE", 1, "Script", UpdateEditIDLE)]) # UI customization properties add_data(db, "Property", |