summaryrefslogtreecommitdiffstats
path: root/Tools/msi/bundle/packagegroups/launcher.wxs
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-09-17 23:14:14 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2016-09-17 23:14:14 (GMT)
commitf4fc1d12eceb48b9d68a6d6acee9a394e131b09d (patch)
tree7072a46056080f7402748626efa6b66302381775 /Tools/msi/bundle/packagegroups/launcher.wxs
parentf5c09402b1bfe97f89f867a67c3939f83c8f777e (diff)
parent7358efa50bcbad1b48610fc0f96e01d8a8c519ae (diff)
downloadcpython-f4fc1d12eceb48b9d68a6d6acee9a394e131b09d.zip
cpython-f4fc1d12eceb48b9d68a6d6acee9a394e131b09d.tar.gz
cpython-f4fc1d12eceb48b9d68a6d6acee9a394e131b09d.tar.bz2
Issue #28110: launcher.msi has different product codes between 32-bit and 64-bit
Diffstat (limited to 'Tools/msi/bundle/packagegroups/launcher.wxs')
-rw-r--r--Tools/msi/bundle/packagegroups/launcher.wxs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/msi/bundle/packagegroups/launcher.wxs b/Tools/msi/bundle/packagegroups/launcher.wxs
index 4444f45..7dae8ca 100644
--- a/Tools/msi/bundle/packagegroups/launcher.wxs
+++ b/Tools/msi/bundle/packagegroups/launcher.wxs
@@ -4,7 +4,7 @@
<PackageGroup Id="launcher">
<!-- The All Users launcher is always the 32-bit version -->
<MsiPackage Id="launcher_AllUsers"
- SourceFile="launcher.msi"
+ SourceFile="!(bindpath.build32)en-us\launcher.msi"
Compressed="$(var.CompressMSI)"
DownloadUrl="$(var.DownloadUrl)"
ForcePerMachine="yes"
@@ -14,7 +14,7 @@
InstallCondition="(InstallAllUsers or InstallLauncherAllUsers) and Include_launcher and not DetectedLauncher" />
<MsiPackage Id="launcher_JustForMe"
- SourceFile="launcher.msi"
+ SourceFile="!(bindpath.build32)en-us\launcher.msi"
Compressed="$(var.CompressMSI)"
DownloadUrl="$(var.DownloadUrl)"
ForcePerMachine="no"