]> 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:50:22 +0000 (14:50 +1100)
committerMark Hammond <mhammond@skippinet.com.au>
Mon, 11 Jan 2016 03:50:22 +0000 (14:50 +1100)
PC/launcher.c

index deaf325cc7c3efca6ea59da727de31ccb30c53c7..36edc321a543ee6963d43a1c6f36e938020ebe15 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
 };