diff options
author | Mark Hammond <mhammond@skippinet.com.au> | 2016-01-11 03:53:01 (GMT) |
---|---|---|
committer | Mark Hammond <mhammond@skippinet.com.au> | 2016-01-11 03:53:01 (GMT) |
commit | 32d1e56bda420602fd4106dbc51ea1dc6f02ba14 (patch) | |
tree | 03695eabd8c14efd0c46beb8b43e0734c303f0d0 /PC/launcher.c | |
parent | 7e23fe1ce1d9598cc959993a90ec1fd1bdb43014 (diff) | |
download | cpython-32d1e56bda420602fd4106dbc51ea1dc6f02ba14.zip cpython-32d1e56bda420602fd4106dbc51ea1dc6f02ba14.tar.gz cpython-32d1e56bda420602fd4106dbc51ea1dc6f02ba14.tar.bz2 |
Issue #26070: py.exe launcher fails to find in-place built binaries from earlier Python versions.
Diffstat (limited to 'PC/launcher.c')
-rw-r--r-- | PC/launcher.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/PC/launcher.c b/PC/launcher.c index b379a38..e6baae5 100644 --- a/PC/launcher.c +++ b/PC/launcher.c @@ -171,6 +171,9 @@ static wchar_t * location_checks[] = { L"\\", L"\\PCBuild\\win32\\", L"\\PCBuild\\amd64\\", + // To support early 32bit versions of Python that stuck the build binaries + // directly in PCBuild... + L"\\PCBuild\\", NULL }; |