summaryrefslogtreecommitdiff
path: root/job.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2009-06-09 15:35:38 +0000
committerPaul Smith <psmith@gnu.org>2009-06-09 15:35:38 +0000
commitd4ee0012925815e069dd9996241703a7e9bd0338 (patch)
tree0f43c9f155b5889d925b447b6b2ad2edf4695bc7 /job.c
parenta72bff7cb3090051e75b631694aeb2bdb863aeb5 (diff)
downloadgunmake-d4ee0012925815e069dd9996241703a7e9bd0338.tar.gz
- Fix Savannah bug #18124
- Fix Savannah bug #17521 - Fix Savannah bug #16401 - Fix Savannah bug #16469 - Fix Savannah bug #16473
Diffstat (limited to 'job.c')
-rw-r--r--job.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/job.c b/job.c
index 6cbfd31..3ed27bf 100644
--- a/job.c
+++ b/job.c
@@ -551,7 +551,7 @@ reap_children (int block, int err)
pid = WAIT_NOHANG (&status);
else
#endif
- pid = wait (&status);
+ EINTRLOOP(pid, wait (&status));
#endif /* !VMS */
}
else
@@ -2028,7 +2028,7 @@ exec_command (char **argv, char **envp)
{
int i;
fprintf(stderr,
- _("process_easy() failed failed to launch process (e=%ld)\n"),
+ _("process_easy() failed to launch process (e=%ld)\n"),
process_last_err(hPID));
for (i = 0; argv[i]; i++)
fprintf(stderr, "%s ", argv[i]);