From 46efbaa6f1cd2d9538b6338cee8b7541ddbddb40 Mon Sep 17 00:00:00 2001 From: Nguyễn Thái Ngọc Duy Date: Wed, 14 Apr 2010 00:37:05 +0200 Subject: win32: ash: waitcmd(): return early, not supported MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nguyễn Thái Ngọc Duy --- shell/ash.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shell/ash.c b/shell/ash.c index d6e44633a..f2f50c0e6 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -4054,6 +4054,9 @@ waitcmd(int argc UNUSED_PARAM, char **argv) int retval; struct job *jp; + if (ENABLE_PLATFORM_MINGW32) + return 0; + if (pending_sig) raise_exception(EXSIG); -- cgit v1.2.3-55-g6feb