]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add build\\python.exe to the list of programs to be killed.
authorMartin v. Löwis <martin@v.loewis.de>
Sat, 10 Jun 2006 08:07:25 +0000 (08:07 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sat, 10 Jun 2006 08:07:25 +0000 (08:07 +0000)
Tools/buildbot/kill_python.c

index ebc9aa4855328d186797630cb5f18c2bb6fddf08..ca905f5713997d422a0406d95a11caf6eea455c9 100644 (file)
@@ -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());