Fix ability to use csh(1) as the make(1) shell.

Sponsored by:	Bright Path Solutions
This commit is contained in:
Juli Mallett 2002-09-29 00:02:04 +00:00
parent c0c1dca769
commit 3873e563fc

View File

@ -1049,7 +1049,9 @@ Cmd_Exec(cmd, error)
(void) dup2(fds[1], 1);
(void) close(fds[1]);
#if DEFSHELL == 1
#if defined(DEFSHELL) && DEFSHELL == 0
(void) execv("/bin/csh", args);
#elif DEFSHELL == 1
(void) execv("/bin/sh", args);
#elif DEFSHELL == 2
(void) execv("/bin/ksh", args);