summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.bin/make/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c
index 5b55fea8..846c8ca 100644
--- a/usr.bin/make/main.c
+++ b/usr.bin/make/main.c
@@ -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);
OpenPOWER on IntegriCloud