diff options
author | Paul Smith <psmith@gnu.org> | 2009-06-09 15:35:38 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2009-06-09 15:35:38 +0000 |
commit | d4ee0012925815e069dd9996241703a7e9bd0338 (patch) | |
tree | 0f43c9f155b5889d925b447b6b2ad2edf4695bc7 /job.c | |
parent | a72bff7cb3090051e75b631694aeb2bdb863aeb5 (diff) | |
download | gunmake-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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]); |