diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-12-03 19:24:02 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-12-03 19:24:02 (GMT) |
commit | 1058109b3182522eaa4357ef99ad22b587d36c73 (patch) | |
tree | 4bdabaa918a109e4c4cc942008d7cc34f7f08d60 /Tools/msi/bundle | |
parent | b6a6b45458490c6928e4f915d7bc83b4a7b44799 (diff) | |
parent | 190dbd9ba20610bfd19b2f3544ec9d9d3fd92b0b (diff) | |
download | cpython-1058109b3182522eaa4357ef99ad22b587d36c73.zip cpython-1058109b3182522eaa4357ef99ad22b587d36c73.tar.gz cpython-1058109b3182522eaa4357ef99ad22b587d36c73.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 c89e6ee..02a456b 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' /> |