From c47c9e6589eb7a272cfe4d352eb87389eb20ec2f Mon Sep 17 00:00:00 2001 From: bneuburg Date: Tue, 18 Jan 2022 01:18:44 +0100 Subject: bpo-44934: Add optional feature AppendPath to Windows MSI installer (GH-27889) The option must be enabled from the command line --- Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp') 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" }, -- cgit v1.2.3