summaryrefslogtreecommitdiff
path: root/usr.bin/make/main.c
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2007-09-17 12:01:18 +0000
committerMarc Espie <espie@cvs.openbsd.org>2007-09-17 12:01:18 +0000
commit6ff91284a622d89ceb6be6407c6f014ad6c4617e (patch)
tree58715ea157c1656df4b420fdeb167ee7df084d86 /usr.bin/make/main.c
parent49c152d1101faa9dd3181ed508d97fedbd7575b0 (diff)
make usePipes the default, zap undocumented -P.
Diffstat (limited to 'usr.bin/make/main.c')
-rw-r--r--usr.bin/make/main.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c
index c4a6f5a4a7b..c980898a0e4 100644
--- a/usr.bin/make/main.c
+++ b/usr.bin/make/main.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: main.c,v 1.81 2007/09/17 11:11:30 espie Exp $ */
+/* $OpenBSD: main.c,v 1.82 2007/09/17 12:01:17 espie Exp $ */
/* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */
/*
@@ -97,7 +97,6 @@ bool noExecute; /* -n flag */
bool keepgoing; /* -k flag */
bool queryFlag; /* -q flag */
bool touchFlag; /* -t flag */
-bool usePipes; /* !-P flag */
bool ignoreErrors; /* -i flag */
bool beSilent; /* -s flag */
@@ -148,8 +147,7 @@ posixParseOptLetter(int c)
compatMake = true;
return; /* XXX don't pass to submakes. */
case 'P':
- usePipes = false;
- break;
+ break; /* old option */
case 'S':
keepgoing = false;
break;
@@ -677,7 +675,6 @@ main(int argc, char **argv)
queryFlag = false; /* This is not just a check-run */
noBuiltins = false; /* Read the built-in rules */
touchFlag = false; /* Actually update targets */
- usePipes = true; /* Catch child output in pipes */
debug = 0; /* No debug verbosity, please. */
maxLocal = DEFMAXLOCAL; /* Set default local max concurrency */