diff options
author | Steve Dower <steve.dower@python.org> | 2024-09-23 15:27:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-23 15:27:46 (GMT) |
commit | df7228ce140ecb005d44a0c171ba4d098b3fa67c (patch) | |
tree | 06263ec0c042514c4692f6798920ca8f417c30dc /Tools/msi | |
parent | 6ab634840c662ae07d90655e5e50ca43421da4be (diff) | |
download | cpython-df7228ce140ecb005d44a0c171ba4d098b3fa67c.zip cpython-df7228ce140ecb005d44a0c171ba4d098b3fa67c.tar.gz cpython-df7228ce140ecb005d44a0c171ba4d098b3fa67c.tar.bz2 |
gh-124254: Detect freethreaded MSI component when doing an upgrade on Windows (GH-124279)
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp index 7cddda9..094ddba 100644 --- a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp +++ b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp @@ -213,6 +213,7 @@ static struct { LPCWSTR regName; LPCWSTR variableName; } OPTIONAL_FEATURES[] = { { L"Shortcuts", L"Shortcuts" }, // Include_launcher and AssociateFiles are handled separately and so do // not need to be included in this list. + { L"freethreaded", L"Include_freethreaded" }, { nullptr, nullptr } }; |