summaryrefslogtreecommitdiffstats
path: root/usr.bin/make/job.c
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2009-01-03 10:14:01 +0000
committerobrien <obrien@FreeBSD.org>2009-01-03 10:14:01 +0000
commita3f555f083888fd170c838c4620b5f3355c05886 (patch)
tree8485f281917e9edc0e34919c38ef1f84e6c69514 /usr.bin/make/job.c
parentefe3f87721e5c915985776d2d88cb173737e8258 (diff)
downloadFreeBSD-src-a3f555f083888fd170c838c4620b5f3355c05886.zip
FreeBSD-src-a3f555f083888fd170c838c4620b5f3355c05886.tar.gz
+ Add the -Q be-quiet flag for parallel jobs.
- Enable -Q by default for the moment - there is something weird going on in the rescue build.
Diffstat (limited to 'usr.bin/make/job.c')
-rw-r--r--usr.bin/make/job.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c
index 5bd5456..04c7ce5 100644
--- a/usr.bin/make/job.c
+++ b/usr.bin/make/job.c
@@ -2363,7 +2363,7 @@ Job_Init(int maxproc)
lastNode = NULL;
- if (maxJobs == 1 && fifoFd < 0) {
+ if ((maxJobs == 1 && fifoFd < 0) || beQuiet || beVerbose == 0) {
/*
* If only one job can run at a time, there's no need for a
* banner, no is there?
OpenPOWER on IntegriCloud