summaryrefslogtreecommitdiff
path: root/Tools/msi/bundle
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-12-03 11:18:53 -0800
committerSteve Dower <steve.dower@microsoft.com>2016-12-03 11:18:53 -0800
commite724fe060b189a4879fd9713a24bbfe6c9eb008e (patch)
tree7e712c6bda75df827da9c6cab4689dec7cebac32 /Tools/msi/bundle
parentd9a8d12c0884196ab010a624b663ac7d81456d3a (diff)
downloadcpython-e724fe060b189a4879fd9713a24bbfe6c9eb008e.tar.gz
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 38307e063c..eda088404f 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' />