diff options
author | Steve Dower <steve.dower@python.org> | 2022-03-07 17:23:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-07 17:23:11 (GMT) |
commit | 77446d2aa56e9e3262d9d2247342bbbb0ff5e907 (patch) | |
tree | 8c36fab1f209dd9f354394bb28e4037250f20356 /Tools/msi/bundle | |
parent | ca9689f8dac01d27e041e1dbbdae146746d48ab3 (diff) | |
download | cpython-77446d2aa56e9e3262d9d2247342bbbb0ff5e907.zip cpython-77446d2aa56e9e3262d9d2247342bbbb0ff5e907.tar.gz cpython-77446d2aa56e9e3262d9d2247342bbbb0ff5e907.tar.bz2 |
bpo-46948: Fix CVE-2022-26488 by ensuring the Windows Installer correctly uses the install path during repair (GH-31726)
Diffstat (limited to 'Tools/msi/bundle')
-rw-r--r-- | Tools/msi/bundle/bundle.wxs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/bundle/bundle.wxs b/Tools/msi/bundle/bundle.wxs index 0683f87..ac4b7a6 100644 --- a/Tools/msi/bundle/bundle.wxs +++ b/Tools/msi/bundle/bundle.wxs @@ -108,8 +108,8 @@ <PackageGroupRef Id="crt" /> <?endif ?> <PackageGroupRef Id="core" /> - <PackageGroupRef Id="dev" /> <PackageGroupRef Id="exe" /> + <PackageGroupRef Id="dev" /> <PackageGroupRef Id="lib" /> <PackageGroupRef Id="test" /> <PackageGroupRef Id="doc" /> |