(original) (raw)

changeset: 99830:bfb4a09149b1 parent: 99828:8ee02ec9b634 user: Mark Hammond mhammond@skippinet.com.au date: Mon Jan 11 14:53:01 2016 +1100 files: PC/launcher.c description: Issue #26070: py.exe launcher fails to find in-place built binaries from earlier Python versions. diff -r 8ee02ec9b634 -r bfb4a09149b1 PC/launcher.c --- a/PC/launcher.c Sat Jan 09 23:56:40 2016 -0800 +++ b/PC/launcher.c Mon Jan 11 14:53:01 2016 +1100 @@ -171,6 +171,9 @@ 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 }; /mhammond@skippinet.com.au