svn commit: r188075 - head/usr.bin/make

David E. O'Brien obrien at FreeBSD.org
Tue Feb 3 07:27:32 PST 2009


Author: obrien
Date: Tue Feb  3 15:27:29 2009
New Revision: 188075
URL: http://svn.freebsd.org/changeset/base/188075

Log:
  Partially revert r186559.

Modified:
  head/usr.bin/make/job.c

Modified: head/usr.bin/make/job.c
==============================================================================
--- head/usr.bin/make/job.c	Tue Feb  3 15:24:00 2009	(r188074)
+++ head/usr.bin/make/job.c	Tue Feb  3 15:27:29 2009	(r188075)
@@ -2362,7 +2362,7 @@ Job_Init(int maxproc)
 	makeErrors = 0;
 
 	lastNode = NULL;
-	if ((maxJobs == 1 && fifoFd < 0) || is_posix || beQuiet) {
+	if ((maxJobs == 1 && fifoFd < 0) || !beVerbose || is_posix || beQuiet) {
 		/*
 		 * If only one job can run at a time, there's no need for a
 		 * banner, no is there?


More information about the svn-src-all mailing list