diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-09-17 10:22:31 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-09-17 10:22:31 +0000 |
commit | e521637f52ef6a5f3363f8b23c03f97d46753ec6 (patch) | |
tree | ff75761ebb281598115fe9ae2dc2fa528d258546 /usr.bin/make/job.c | |
parent | 1753b459fe879c03423618b0db8811b8dc572ef2 (diff) |
start hardcoding the shell. we always run with sh anyways.
Diffstat (limited to 'usr.bin/make/job.c')
-rw-r--r-- | usr.bin/make/job.c | 29 |
1 files changed, 10 insertions, 19 deletions
diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c index 1a7aef90160..b84c66241c1 100644 --- a/usr.bin/make/job.c +++ b/usr.bin/make/job.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: job.c,v 1.69 2007/09/17 10:17:26 espie Exp $ */ +/* $OpenBSD: job.c,v 1.70 2007/09/17 10:22:30 espie Exp $ */ /* $NetBSD: job.c,v 1.16 1996/11/06 17:59:08 christos Exp $ */ /* @@ -109,7 +109,6 @@ #include "gnode.h" #include "memory.h" #include "make.h" -#include "str.h" #define TMPPAT "/tmp/makeXXXXXXXXXX" @@ -345,10 +344,15 @@ static Shell shells[] = { static Shell *commandShell = &shells[DEFSHELL];/* this is the shell to * which we pass all * commands in the Makefile*/ -static char *shellPath = NULL, /* full pathname of - * executable image */ - *shellName = NULL; /* last component of shell */ +#define SHELL_ECHO_OFF "set -" +#define SHELL_ECHO_ON "set -v" +#define SHELL_ERROR_ON "set -e" +#define SHELL_ERROR_OFF "set +e" +#define SHELL_ECHO_FLAG "v" +#define SHELL_ERROR_FLAG "e" +static const char *shellPath = _PATH_BSHELL; +static const char *shellName = "sh"; static int maxJobs; /* The most children we can run at once */ static int maxLocal; /* The most local ones we can have */ @@ -1274,7 +1278,7 @@ JobMakeArgv(Job *job, char **argv) int argc; static char args[10]; /* For merged arguments */ - argv[0] = shellName; + argv[0] = (char *)shellName; argc = 1; if ((commandShell->exit && *commandShell->exit != '-') || @@ -2168,19 +2172,6 @@ Job_Init(int maxproc, /* the greatest number of jobs which may be targFmt = TARG_FMT; } - if (shellPath == NULL) { - /* - * The user didn't specify a shell to use, so we are using the - * default one... Both the absolute path and the last component - * must be set. The last component is taken from the 'name' - * field of the default shell description pointed-to by - * commandShell. All default shells are located in - * _PATH_DEFSHELLDIR. - */ - shellName = commandShell->name; - shellPath = Str_concat(_PATH_DEFSHELLDIR, shellName, '/'); - } - if (commandShell->exit == NULL) { commandShell->exit = ""; } |