mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Don't enable -Q by default - I've fixed the rescue build issue.
This commit is contained in:
parent
7328f91370
commit
ef9977831f
2 changed files with 3 additions and 3 deletions
|
|
@ -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?
|
||||
|
|
|
|||
|
|
@ -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':
|
||||
|
|
|
|||
Loading…
Reference in a new issue