From 32d1e56bda420602fd4106dbc51ea1dc6f02ba14 Mon Sep 17 00:00:00 2001 From: Mark Hammond Date: Mon, 11 Jan 2016 14:53:01 +1100 Subject: Issue #26070: py.exe launcher fails to find in-place built binaries from earlier Python versions. --- PC/launcher.c | 3 +++ 1 file changed, 3 insertions(+) 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 }; -- cgit v0.12