diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-11-03 11:42:42 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-11-03 11:42:42 +0000 |
commit | 1d751c6a9c5f6d23f965f00be683d1f8281f6b83 (patch) | |
tree | 2d2cfd500dd5c31502fd597ff690cbcfe4652620 /usr.bin/make/compat.c | |
parent | 88e8357f78ed7acb8751294e2d802d7f41bb5fed (diff) |
do the silent/ignore check in Job_CheckCommands, so that make -j4 -s works
Diffstat (limited to 'usr.bin/make/compat.c')
-rw-r--r-- | usr.bin/make/compat.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/usr.bin/make/compat.c b/usr.bin/make/compat.c index 8fc82f13a6f..12c8c3bd5a3 100644 --- a/usr.bin/make/compat.c +++ b/usr.bin/make/compat.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: compat.c,v 1.63 2007/11/02 17:27:24 espie Exp $ */ +/* $OpenBSD: compat.c,v 1.64 2007/11/03 11:42:41 espie Exp $ */ /* $NetBSD: compat.c,v 1.14 1996/11/06 17:59:01 christos Exp $ */ /* @@ -128,14 +128,6 @@ CompatMake(void *gnp, /* The node to make */ * variable using Make_DoAllVar(). */ Make_DoAllVar(gn); - /* Alter our type to tell if errors should be ignored or things - * should not be printed so CompatRunCommand knows what to do. - */ - if (Targ_Ignore(gn)) - gn->type |= OP_IGNORE; - if (Targ_Silent(gn)) - gn->type |= OP_SILENT; - if (Job_CheckCommands(gn, Fatal)) { /* Our commands are ok, but we still have to worry * about the -t flag... */ |