diff options
author | Mark Hammond <mhammond@skippinet.com.au> | 2016-01-11 03:50:22 (GMT) |
---|---|---|
committer | Mark Hammond <mhammond@skippinet.com.au> | 2016-01-11 03:50:22 (GMT) |
commit | ce543fd79520061913bedb94cece8da981649a95 (patch) | |
tree | e602fdaa848da711ae9a21238f881f4c34f4c921 /PC/launcher.c | |
parent | 4d927420b81aac3710b17aca1ff08f3cb281076e (diff) | |
download | cpython-ce543fd79520061913bedb94cece8da981649a95.zip cpython-ce543fd79520061913bedb94cece8da981649a95.tar.gz cpython-ce543fd79520061913bedb94cece8da981649a95.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 deaf325..36edc32 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 }; |