summaryrefslogtreecommitdiff
path: root/job.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2007-12-22 11:27:02 +0000
committerEli Zaretskii <eliz@gnu.org>2007-12-22 11:27:02 +0000
commit5d996bf28d5dfd42415fbcafa55235f632313839 (patch)
treeb5715ac35cf9e1aa198156162d476d00f52491ad /job.c
parente60524d9700061d17967b6da5ad4504339890860 (diff)
downloadmake-5d996bf28d5dfd42415fbcafa55235f632313839.tar.gz
configh.dos.template [__DJGPP__]: Replace HAVE_SYS_SIGLIST with
HAVE_DECL_SYS_SIGLIST. job.c (child_execute_job): Remove __MSDOS__ because MSDOS/DJGPP build does not use child_execute_job. variable.c (define_automatic_variables) [__MSDOS__]: Always export the SHELL environment variable to the child.
Diffstat (limited to 'job.c')
-rw-r--r--job.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/job.c b/job.c
index 6fc30548..82f7c0b6 100644
--- a/job.c
+++ b/job.c
@@ -1901,7 +1901,7 @@ start_waiting_jobs (void)
#ifndef WINDOWS32
/* EMX: Start a child process. This function returns the new pid. */
-# if defined __MSDOS__ || defined __EMX__
+# if defined __EMX__
int
child_execute_job (int stdin_fd, int stdout_fd, char **argv, char **envp)
{