When giving the -v option to /bin/sh, also give the new -q option so that
the execution of $ENV isn't printed with every job that's started.
This commit is contained in:
parent
a1cc137e16
commit
d5ce180dc0
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: job.c,v 1.24 1998/11/06 23:31:09 christos Exp $ */
|
/* $NetBSD: job.c,v 1.25 1999/02/04 00:40:55 cjs Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
|
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
|
||||||
|
@ -39,14 +39,14 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef MAKE_BOOTSTRAP
|
#ifdef MAKE_BOOTSTRAP
|
||||||
static char rcsid[] = "$NetBSD: job.c,v 1.24 1998/11/06 23:31:09 christos Exp $";
|
static char rcsid[] = "$NetBSD: job.c,v 1.25 1999/02/04 00:40:55 cjs Exp $";
|
||||||
#else
|
#else
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)job.c 8.2 (Berkeley) 3/19/94";
|
static char sccsid[] = "@(#)job.c 8.2 (Berkeley) 3/19/94";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: job.c,v 1.24 1998/11/06 23:31:09 christos Exp $");
|
__RCSID("$NetBSD: job.c,v 1.25 1999/02/04 00:40:55 cjs Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
#endif
|
#endif
|
||||||
|
@ -203,7 +203,7 @@ static Shell shells[] = {
|
||||||
#ifdef OLDBOURNESHELL
|
#ifdef OLDBOURNESHELL
|
||||||
FALSE, "echo \"%s\"\n", "sh -c '%s || exit 0'\n",
|
FALSE, "echo \"%s\"\n", "sh -c '%s || exit 0'\n",
|
||||||
#endif
|
#endif
|
||||||
"v", "e",
|
"vq", "e",
|
||||||
},
|
},
|
||||||
/*
|
/*
|
||||||
* UNKNOWN.
|
* UNKNOWN.
|
||||||
|
|
Loading…
Reference in New Issue