aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
diff options
context:
space:
mode:
authorbneuburg <bastian.neuburger@gmail.com>2022-01-18 01:18:44 +0100
committerGitHub <noreply@github.com>2022-01-18 00:18:44 +0000
commitc47c9e6589eb7a272cfe4d352eb87389eb20ec2f (patch)
tree715cba1337e28d4d2d78a123e4590963422b700b /Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
parent9e20ec4d437993715a8d1317a9b80043e6c07fe1 (diff)
downloadcpython-c47c9e6589eb7a272cfe4d352eb87389eb20ec2f.tar.gz
cpython-c47c9e6589eb7a272cfe4d352eb87389eb20ec2f.zip
bpo-44934: Add optional feature AppendPath to Windows MSI installer (GH-27889)
The option must be enabled from the command line
Diffstat (limited to 'Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp')
-rw-r--r--Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
index 3c54e401330..fdc2a21d83d 100644
--- a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
+++ b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
@@ -205,6 +205,7 @@ static struct { LPCWSTR regName; LPCWSTR variableName; } OPTIONAL_FEATURES[] = {
{ L"exe", L"Include_exe" },
{ L"lib", L"Include_lib" },
{ L"path", L"PrependPath" },
+ { L"appendpath", L"AppendPath" },
{ L"pip", L"Include_pip" },
{ L"tcltk", L"Include_tcltk" },
{ L"test", L"Include_test" },