summaryrefslogtreecommitdiff
path: root/usr.bin/make/make.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/make.c
parent49c152d1101faa9dd3181ed508d97fedbd7575b0 (diff)
make usePipes the default, zap undocumented -P.
Diffstat (limited to 'usr.bin/make/make.c')
-rw-r--r--usr.bin/make/make.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/make.c b/usr.bin/make/make.c
index 5ace63f5a53..a2ee3b138d9 100644
--- a/usr.bin/make/make.c
+++ b/usr.bin/make/make.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: make.c,v 1.41 2007/09/17 09:28:36 espie Exp $ */
+/* $OpenBSD: make.c,v 1.42 2007/09/17 12:01:17 espie Exp $ */
/* $NetBSD: make.c,v 1.10 1996/11/06 17:59:15 christos Exp $ */
/*
@@ -455,7 +455,7 @@ Make_Run(Lst targs) /* the initial list of targets */
*/
while (!Job_Empty()) {
Job_CatchOutput();
- Job_CatchChildren(!usePipes);
+ Job_CatchChildren();
(void)MakeStartJobs();
}