summaryrefslogtreecommitdiffstats
path: root/Tools/msi/bundle/packagegroups/crt.wxs
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-07-18 16:27:52 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-07-18 16:27:52 (GMT)
commita3d03ec6b1191c04fb4073e26069d3282c0b6e72 (patch)
tree534e363f7a1eedb76dcfe7ccef38de6409f6463e /Tools/msi/bundle/packagegroups/crt.wxs
parent313fbf45486ab047877589f26c77b745c8fcb9ab (diff)
downloadcpython-a3d03ec6b1191c04fb4073e26069d3282c0b6e72.zip
cpython-a3d03ec6b1191c04fb4073e26069d3282c0b6e72.tar.gz
cpython-a3d03ec6b1191c04fb4073e26069d3282c0b6e72.tar.bz2
Adds option to only install the launcher.
Diffstat (limited to 'Tools/msi/bundle/packagegroups/crt.wxs')
-rw-r--r--Tools/msi/bundle/packagegroups/crt.wxs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/msi/bundle/packagegroups/crt.wxs b/Tools/msi/bundle/packagegroups/crt.wxs
index 32b063f..dc40475 100644
--- a/Tools/msi/bundle/packagegroups/crt.wxs
+++ b/Tools/msi/bundle/packagegroups/crt.wxs
@@ -31,7 +31,7 @@
Description="!(loc.CRTDescription)"
Compressed="$(var.CompressMSI)"
DownloadUrl="$(var.DownloadUrl)"
- InstallCondition="not CRTInstalled and VersionNT = $(var.ver) and not VersionNT64 and (Include_core or Include_exe or Include_launcher or Include_pip)" />
+ InstallCondition="not CRTInstalled and VersionNT = $(var.ver) and not VersionNT64 and (Include_core or Include_exe or Include_launcher or Include_pip) and not LauncherOnly" />
<MsuPackage Id="crt_14.0_$(var.ver)_x64"
KB="2999226"
@@ -40,7 +40,7 @@
Description="!(loc.CRTDescription)"
Compressed="$(var.CompressMSI)"
DownloadUrl="$(var.DownloadUrl)"
- InstallCondition="not CRTInstalled and VersionNT64 = $(var.ver) and (Include_core or Include_exe or Include_launcher or Include_pip)" />
+ InstallCondition="not CRTInstalled and VersionNT64 = $(var.ver) and (Include_core or Include_exe or Include_launcher or Include_pip) and not LauncherOnly" />
</PackageGroup>
</Fragment>