From 5d50c594aa0bf2ce7f9aeecd7b5e9b657258b9ec Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sat, 10 Jun 2006 08:07:25 +0000 Subject: [PATCH] Add build\\python.exe to the list of programs to be killed. --- Tools/buildbot/kill_python.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()); -- 2.47.3