(original) (raw)

changeset: 99683:ba1e102c3320 parent: 99681:6a6a68a3d323 parent: 99682:2af2367d7eda user: Vinay Sajip <vinay_sajip@yahoo.co.uk> date: Sat Dec 26 13:11:38 2015 +0000 files: PC/launcher.c description: Closes #25360: Merged fix from 3.5. diff -r 6a6a68a3d323 -r ba1e102c3320 PC/launcher.c --- a/PC/launcher.c Sat Dec 26 12:51:43 2015 +0000 +++ b/PC/launcher.c Sat Dec 26 13:11:38 2015 +0000 @@ -1255,7 +1255,7 @@ * is no version specification. */ debug(L"searching PATH for python executable\n"); - cmd = find_on_path(L"python"); + cmd = find_on_path(PYTHON_EXECUTABLE); debug(L"Python on path: %ls\n", cmd ? cmd->value : L""); if (cmd) { debug(L"located python on PATH: %ls\n", cmd->value);</vinay_sajip@yahoo.co.uk>