From: Mark Hammond Date: Mon, 11 Jan 2016 03:50:22 +0000 (+1100) Subject: Issue #26070: py.exe launcher fails to find in-place built binaries from earlier... X-Git-Tag: v3.6.0a1~802^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ce543fd79520061913bedb94cece8da981649a95;p=thirdparty%2FPython%2Fcpython.git Issue #26070: py.exe launcher fails to find in-place built binaries from earlier Python versions. --- diff --git a/PC/launcher.c b/PC/launcher.c index deaf325cc7c3..36edc321a543 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 };