diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-10-10 03:18:52 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-10-10 03:18:52 (GMT) |
commit | 425ec150ea52a5c164d0770df251381159bb54bb (patch) | |
tree | 98949edd89999228957911b793f367ff0a6dbe4f /Tools/msi/tools | |
parent | b1321fba53123fde88278e074b1e16ed206a18ad (diff) | |
download | cpython-425ec150ea52a5c164d0770df251381159bb54bb.zip cpython-425ec150ea52a5c164d0770df251381159bb54bb.tar.gz cpython-425ec150ea52a5c164d0770df251381159bb54bb.tar.bz2 |
Issue #28402: Adds signed catalog files for stdlib on Windows.
Diffstat (limited to 'Tools/msi/tools')
-rw-r--r-- | Tools/msi/tools/tools.wixproj | 1 | ||||
-rw-r--r-- | Tools/msi/tools/tools.wxs | 1 | ||||
-rw-r--r-- | Tools/msi/tools/tools_files.wxs | 7 |
3 files changed, 9 insertions, 0 deletions
diff --git a/Tools/msi/tools/tools.wixproj b/Tools/msi/tools/tools.wixproj index f43cf33..b7fc41e 100644 --- a/Tools/msi/tools/tools.wixproj +++ b/Tools/msi/tools/tools.wixproj @@ -36,6 +36,7 @@ <TargetBase>$(PySourcePath)</TargetBase> <Target_></Target_> <Group>tools_py</Group> + <IncludeInCat>true</IncludeInCat> </InstallFiles> </ItemGroup> diff --git a/Tools/msi/tools/tools.wxs b/Tools/msi/tools/tools.wxs index 8f8418a..7a805d0 100644 --- a/Tools/msi/tools/tools.wxs +++ b/Tools/msi/tools/tools.wxs @@ -9,6 +9,7 @@ <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)"> <ComponentGroupRef Id="tools_py" /> <ComponentGroupRef Id="tools_scripts" /> + <ComponentGroupRef Id="tools_cat" /> <ComponentRef Id="OptionalFeature" /> </Feature> </Product> diff --git a/Tools/msi/tools/tools_files.wxs b/Tools/msi/tools/tools_files.wxs index 3ae0db2..9c76b1b 100644 --- a/Tools/msi/tools/tools_files.wxs +++ b/Tools/msi/tools/tools_files.wxs @@ -13,4 +13,11 @@ </Component> </ComponentGroup> </Fragment> + <Fragment> + <ComponentGroup Id="tools_cat"> + <Component Id="tools_cat" Directory="Catalogs" Guid="*"> + <File Name="python_tools.cat" KeyPath="yes" /> + </Component> + </ComponentGroup> + </Fragment> </Wix> |