diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-07-16 23:33:55 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-07-16 23:33:55 (GMT) |
commit | 2237bdc595e3d33f941c40108eddfa262c19d960 (patch) | |
tree | 174fef339e6a87b1d4cab69f631dacf16abfe45b /Tools/msi/common.wxs | |
parent | 8cc80f1d8199a29a432c8caeb3142f9aa35012fd (diff) | |
download | cpython-2237bdc595e3d33f941c40108eddfa262c19d960.zip cpython-2237bdc595e3d33f941c40108eddfa262c19d960.tar.gz cpython-2237bdc595e3d33f941c40108eddfa262c19d960.tar.bz2 |
Adds option to install launcher for all users even when installing Python just-for-me. This helps mitigate issues when the incompatible Python 3.4 launcher is installed.
Enables installer builds with the the text marker.
Allows simple installs to include a custom description.
Diffstat (limited to 'Tools/msi/common.wxs')
-rw-r--r-- | Tools/msi/common.wxs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/common.wxs b/Tools/msi/common.wxs index cc39540..9f96bd3 100644 --- a/Tools/msi/common.wxs +++ b/Tools/msi/common.wxs @@ -103,7 +103,7 @@ <Fragment> <DirectoryRef Id="TARGETDIR"> <Directory Id="ProgramMenuFolder"> - <Directory Id="MenuDir" Name="!(loc.ProductName)" /> + <Directory Id="MenuDir" Name="$(var.TestPrefix)!(loc.ProductName)" /> </Directory> </DirectoryRef> </Fragment> |