Message89741
I found the cause: in msi.py, the DisplayIcon registry variable is attached to
"REGISTRY.def" i.e the "Register extensions" feature.
The following patch attaches it to the parent group.
Index: msi.py
===================================================================
--- msi.py (revision 73575)
+++ msi.py (working copy)
@@ -1258,7 +1258,7 @@
"", r"[TARGETDIR]Python.exe", "REGISTRY.def"),
("DisplayIcon", -1,
r"Software\Microsoft\Windows\CurrentVersion\Uninstall\%s" %
product_code,
- "DisplayIcon", "[TARGETDIR]python.exe", "REGISTRY.def")
+ "DisplayIcon", "[TARGETDIR]python.exe", "REGISTRY")
])
# Shortcuts, see "Shortcut Table"
add_data(db, "Directory", |
|
Date |
User |
Action |
Args |
2009-06-26 20:32:20 | amaury.forgeotdarc | set | recipients:
+ amaury.forgeotdarc, loewis, georg.brandl, Retro |
2009-06-26 20:32:20 | amaury.forgeotdarc | set | messageid: <1246048340.28.0.152522162771.issue5390@psf.upfronthosting.co.za> |
2009-06-26 20:32:18 | amaury.forgeotdarc | link | issue5390 messages |
2009-06-26 20:32:17 | amaury.forgeotdarc | create | |
|