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

Issue #2271: Set SecureCustomProperties so that installation will properly

use the TARGETDIR even for unprivileged users.
üst 67543a9d
...@@ -125,6 +125,9 @@ Tests ...@@ -125,6 +125,9 @@ Tests
Build Build
----- -----
- Issue #2271: Set SecureCustomProperties so that installation will properly
use the TARGETDIR even for unprivileged users.
- Allow passing the MSI file name to merge.py. - Allow passing the MSI file name to merge.py.
- Issue #3758: Rename the 'check' target to 'patchcheck' so as to not clash - Issue #3758: Rename the 'check' target to 'patchcheck' so as to not clash
......
...@@ -250,6 +250,8 @@ def remove_old_versions(db): ...@@ -250,6 +250,8 @@ def remove_old_versions(db):
(upgrade_code_snapshot, start, "%s.%d.0" % (major, int(minor)+1), (upgrade_code_snapshot, start, "%s.%d.0" % (major, int(minor)+1),
None, migrate_features, None, "REMOVEOLDSNAPSHOT")]) None, migrate_features, None, "REMOVEOLDSNAPSHOT")])
props = "REMOVEOLDSNAPSHOT;REMOVEOLDVERSION" props = "REMOVEOLDSNAPSHOT;REMOVEOLDVERSION"
props += ";TARGETDIR;DLLDIR"
# Installer collects the product codes of the earlier releases in # Installer collects the product codes of the earlier releases in
# these properties. In order to allow modification of the properties, # these properties. In order to allow modification of the properties,
# they must be declared as secure. See "SecureCustomProperties Property" # they must be declared as secure. See "SecureCustomProperties Property"
......
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