From 1f3a582db3ca7cd7f33d5ab6f2f6c46d68de689d Mon Sep 17 00:00:00 2001 From: Ron Yorston Date: Thu, 19 May 2016 13:01:45 +0100 Subject: ash: enable wait builtin command --- shell/ash.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'shell') diff --git a/shell/ash.c b/shell/ash.c index 1c14f396c..750ca7b6d 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -4507,9 +4507,6 @@ waitcmd(int argc UNUSED_PARAM, char **argv) int retval; struct job *jp; - if (ENABLE_PLATFORM_MINGW32) - return 0; - if (pending_sig) raise_exception(EXSIG); @@ -5168,7 +5165,6 @@ forkshell(struct job *jp, union node *n, int mode) int pid; TRACE(("forkshell(%%%d, %p, %d) called\n", jobno(jp), n, mode)); - pid = fork(); if (pid < 0) { TRACE(("Fork failed, errno=%d", errno)); -- cgit v1.2.3-55-g6feb