summaryrefslogtreecommitdiff
path: root/PC/launcher.c
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2016-01-11 14:50:22 +1100
committerMark Hammond <mhammond@skippinet.com.au>2016-01-11 14:50:22 +1100
commitce543fd79520061913bedb94cece8da981649a95 (patch)
treee602fdaa848da711ae9a21238f881f4c34f4c921 /PC/launcher.c
parent4d927420b81aac3710b17aca1ff08f3cb281076e (diff)
downloadcpython-git-ce543fd79520061913bedb94cece8da981649a95.tar.gz
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.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/PC/launcher.c b/PC/launcher.c
index deaf325cc7..36edc321a5 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
};