Don't enable -Q by default - I've fixed the rescue build issue.

This commit is contained in:
David E. O'Brien 2009-01-13 06:53:53 +00:00
parent 7328f91370
commit ef9977831f
2 changed files with 3 additions and 3 deletions

View file

@ -2362,8 +2362,7 @@ Job_Init(int maxproc)
makeErrors = 0;
lastNode = NULL;
if ((maxJobs == 1 && fifoFd < 0) || beQuiet || beVerbose == 0) {
if ((maxJobs == 1 && fifoFd < 0) || is_posix || beQuiet) {
/*
* If only one job can run at a time, there's no need for a
* banner, no is there?

View file

@ -126,7 +126,7 @@ Boolean is_posix; /* .POSIX target seen */
Boolean mfAutoDeps; /* .MAKEFILEDEPS target seen */
Boolean beSilent; /* -s flag */
Boolean beVerbose; /* -v flag */
Boolean beQuiet = TRUE; /* -Q flag */
Boolean beQuiet; /* -Q flag */
Boolean compatMake; /* -B argument */
int debug; /* -d flag */
Boolean ignoreErrors; /* -i flag */
@ -519,6 +519,7 @@ rearg:
break;
case 'Q':
beQuiet = TRUE;
beVerbose = FALSE;
MFLAGS_append("-Q", NULL);
break;
case 'q':