From: Martin v. Löwis Date: Sat, 10 Jun 2006 08:07:25 +0000 (+0000) Subject: Add build\\python.exe to the list of programs to be killed. X-Git-Tag: v2.4.4c1~185 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d50c594aa0bf2ce7f9aeecd7b5e9b657258b9ec;p=thirdparty%2FPython%2Fcpython.git Add build\\python.exe to the list of programs to be killed. --- diff --git a/Tools/buildbot/kill_python.c b/Tools/buildbot/kill_python.c index ebc9aa485532..ca905f571399 100644 --- a/Tools/buildbot/kill_python.c +++ b/Tools/buildbot/kill_python.c @@ -42,7 +42,8 @@ int main() _strlwr(path); /* printf("%s\n", path); */ - if (strstr(path, "build\\pcbuild\\python_d.exe") != NULL) { + if ((strstr(path, "build\\pcbuild\\python_d.exe") != NULL) || + (strstr(path, "build\\python.exe") != NULL)) { printf("Terminating %s (pid %d)\n", path, pids[i]); if (!TerminateProcess(hProcess, 1)) { printf("Termination failed: %d\n", GetLastError());