summaryrefslogtreecommitdiffstats
path: root/Tools/msi/bundle
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-12-03 19:24:02 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2016-12-03 19:24:02 (GMT)
commit1058109b3182522eaa4357ef99ad22b587d36c73 (patch)
tree4bdabaa918a109e4c4cc942008d7cc34f7f08d60 /Tools/msi/bundle
parentb6a6b45458490c6928e4f915d7bc83b4a7b44799 (diff)
parent190dbd9ba20610bfd19b2f3544ec9d9d3fd92b0b (diff)
downloadcpython-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.wxs6
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' />