summaryrefslogtreecommitdiff
path: root/commands.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2005-03-04 12:52:32 +0000
committerPaul Smith <psmith@gnu.org>2005-03-04 12:52:32 +0000
commit28078b517a3151f18cf427be87600803251d732b (patch)
treed963a5674f982ccc6070f1596b8286239f84f5b8 /commands.c
parentcb2f20026908d5c6e48e2cd3e3e65b5f67498d02 (diff)
downloadgunmake-28078b517a3151f18cf427be87600803251d732b.tar.gz
- Missing docs for $|
- Update NEWS and AUTHORS files. - Fix support request #103195. - Apply patch #3679 - Fix handling of sys_siglist in autoconf/etc.
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/commands.c b/commands.c
index 97ec981..813610c 100644
--- a/commands.c
+++ b/commands.c
@@ -481,10 +481,15 @@ fatal_error_signal (int sig)
exit (EXIT_FAILURE);
#endif
+#ifdef WINDOWS32
+ /* Cannot call W32_kill with a pid (it needs a handle) */
+ exit (EXIT_FAILURE);
+#else
/* Signal the same code; this time it will really be fatal. The signal
will be unblocked when we return and arrive then to kill us. */
if (kill (getpid (), sig) < 0)
pfatal_with_name ("kill");
+#endif /* not WINDOWS32 */
#endif /* not Amiga */
#endif /* not __MSDOS__ */
}