If -B is specified to get compat mode (as opposed to just not giving

a -j arg which does the same thing), remove the MAKE_JOBS_FIFO
environment variable so we decouple any resulting sub-makes from
the token pool.
This commit is contained in:
Poul-Henning Kamp 2004-11-12 20:37:27 +00:00
parent b7c3f3a9d5
commit 112807ca28

View File

@ -188,6 +188,7 @@ rearg: while((c = getopt(argc, argv, OPTFLAGS)) != -1) {
case 'B':
compatMake = TRUE;
MFLAGS_append("-B", NULL);
unsetenv("MAKE_JOBS_FIFO");
break;
case 'P':
usePipes = FALSE;