]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #26070: py.exe launcher fails to find in-place built binaries from earlier...
authorMark Hammond <mhammond@skippinet.com.au>
Mon, 11 Jan 2016 03:53:01 +0000 (14:53 +1100)
committerMark Hammond <mhammond@skippinet.com.au>
Mon, 11 Jan 2016 03:53:01 +0000 (14:53 +1100)
PC/launcher.c

index b379a383c16ea2ca5cba2f81761f32410dc9124b..e6baae5d955a8818ecfb12d5f0ff7524d2f83887 100644 (file)
@@ -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
 };