diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2013-07-07 09:41:09 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2013-07-07 09:41:09 +0000 |
commit | 4c3dcb8bebcf030dcfab249c02c02f8083bb2c84 (patch) | |
tree | 17d7b040ef970aa060f943df9106371ab1e3fa3d /usr.bin/make/main.c | |
parent | 44f538d56a19f92ef8902f44dd4a8dbd6bdccbc6 (diff) |
old option -P bites the dust. It's not been doing anything for years.
It used to control pipes for parallel output, but the new model means
pipes are no longer used at all.
Its mere presence confuses some people.
tested thru a few builds and bulk to not impact anything.
Diffstat (limited to 'usr.bin/make/main.c')
-rw-r--r-- | usr.bin/make/main.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index 44b7b697406..4ac8a32fa55 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.100 2012/10/18 17:54:43 espie Exp $ */ +/* $OpenBSD: main.c,v 1.101 2013/07/07 09:41:08 espie Exp $ */ /* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */ /* @@ -144,8 +144,6 @@ posixParseOptLetter(int c) case 'B': compatMake = true; return; /* XXX don't pass to submakes. */ - case 'P': - break; /* old option */ case 'S': keepgoing = false; break; @@ -200,8 +198,8 @@ MainParseArgs(int argc, char **argv) { int c, optend; -#define OPTFLAGS "BD:I:PSV:d:ef:ij:km:npqrst" -#define OPTLETTERS "BPSiknpqrst" +#define OPTFLAGS "BD:I:SV:d:ef:ij:km:npqrst" +#define OPTLETTERS "BSiknpqrst" optind = 1; /* since we're called more than once */ optreset = 1; |