mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Make explicit '-B' option propigate to submakes.
No one has said this would be a bad thing, so given the dearth of comments I decided to add it, as its an important step towards getting "make world" 'parallel-ized'. Reviewed by: silence Submitted by: nnd@itfs.nsk.su
This commit is contained in:
parent
3faae24ef5
commit
1ecd3f4585
1 changed files with 2 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ static const char copyright[] =
|
|||
static char sccsid[] = "@(#)main.c 8.3 (Berkeley) 3/19/94";
|
||||
#endif
|
||||
static const char rcsid[] =
|
||||
"$Id: main.c,v 1.1 1997/08/13 23:36:11 smp Exp smp $";
|
||||
"$Id: main.c,v 1.20 1997/08/14 19:24:11 fsmp Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
/*-
|
||||
|
|
@ -190,6 +190,7 @@ rearg: while((c = getopt(argc, argv, OPTFLAGS)) != -1) {
|
|||
break;
|
||||
case 'B':
|
||||
compatMake = TRUE;
|
||||
Var_Append(MAKEFLAGS, "-B", VAR_GLOBAL);
|
||||
break;
|
||||
#ifdef REMOTE
|
||||
case 'L':
|
||||
|
|
|
|||
Loading…
Reference in a new issue