diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-12-03 19:18:53 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-12-03 19:18:53 (GMT) |
commit | 190dbd9ba20610bfd19b2f3544ec9d9d3fd92b0b (patch) | |
tree | 1c1a16cc7207424cf8e1d4431f816537cb6fd2d4 /Tools/msi/bundle | |
parent | 2d397dc44b6023aebdaf0fc44bca66752d3ffb03 (diff) | |
download | cpython-190dbd9ba20610bfd19b2f3544ec9d9d3fd92b0b.zip cpython-190dbd9ba20610bfd19b2f3544ec9d9d3fd92b0b.tar.gz cpython-190dbd9ba20610bfd19b2f3544ec9d9d3fd92b0b.tar.bz2 |
Issue #28846: Various installer fixes
Diffstat (limited to 'Tools/msi/bundle')
-rw-r--r-- | Tools/msi/bundle/bundle.wxs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Tools/msi/bundle/bundle.wxs b/Tools/msi/bundle/bundle.wxs index 38307e0..eda0884 100644 --- a/Tools/msi/bundle/bundle.wxs +++ b/Tools/msi/bundle/bundle.wxs @@ -1,6 +1,7 @@ <?xml version="1.0"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" - xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"> + xmlns:bal="http://schemas.microsoft.com/wix/BalExtension" + xmlns:dep="http://schemas.microsoft.com/wix/DependencyExtension"> <Bundle Name="!(loc.FullProductName)" UpgradeCode="$(var.CoreUpgradeCode)" Version="$(var.Version)" @@ -8,7 +9,8 @@ Manufacturer="!(loc.Manufacturer)" AboutUrl="http://www.python.org/" DisableModify="button" - Compressed="no"> + Compressed="no" + dep:ProviderKey="CPython-$(var.MajorVersionNumber).$(var.MinorVersionNumber)$(var.PyArchExt)$(var.PyTestExt)"> <BootstrapperApplication Id="PythonBA" SourceFile="$(var.BootstrapApp)"> <Payload Compressed='yes' SourceFile='Default.thm' /> <Payload Compressed='yes' SourceFile='Default.wxl' /> |