Deleted Added
full compact
job.c (186559) job.c (186713)
1/*-
2 * Copyright (c) 1988, 1989, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1988, 1989 by Adam de Boor
5 * Copyright (c) 1989 by Berkeley Softworks
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by

--- 26 unchanged lines hidden (view full) ---

35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * @(#)job.c 8.2 (Berkeley) 3/19/94
40 */
41
42#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1988, 1989, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1988, 1989 by Adam de Boor
5 * Copyright (c) 1989 by Berkeley Softworks
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by

--- 26 unchanged lines hidden (view full) ---

35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * @(#)job.c 8.2 (Berkeley) 3/19/94
40 */
41
42#include <sys/cdefs.h>
43__FBSDID("$FreeBSD: head/usr.bin/make/job.c 186559 2008-12-29 10:26:02Z obrien $");
43__FBSDID("$FreeBSD: head/usr.bin/make/job.c 186713 2009-01-03 10:14:01Z obrien $");
44
45/*-
46 * job.c --
47 * handle the creation etc. of our child processes.
48 *
49 * Interface:
50 * Job_Make Start the creation of the given target.
51 *

--- 2306 unchanged lines hidden (view full) ---

2358 }
2359 nJobs = 0;
2360
2361 aborting = 0;
2362 makeErrors = 0;
2363
2364 lastNode = NULL;
2365
44
45/*-
46 * job.c --
47 * handle the creation etc. of our child processes.
48 *
49 * Interface:
50 * Job_Make Start the creation of the given target.
51 *

--- 2306 unchanged lines hidden (view full) ---

2358 }
2359 nJobs = 0;
2360
2361 aborting = 0;
2362 makeErrors = 0;
2363
2364 lastNode = NULL;
2365
2366 if (maxJobs == 1 && fifoFd < 0) {
2366 if ((maxJobs == 1 && fifoFd < 0) || beQuiet || beVerbose == 0) {
2367 /*
2368 * If only one job can run at a time, there's no need for a
2369 * banner, no is there?
2370 */
2371 targFmt = "";
2372 } else {
2373 targFmt = TARG_FMT;
2374 }

--- 1022 unchanged lines hidden ---
2367 /*
2368 * If only one job can run at a time, there's no need for a
2369 * banner, no is there?
2370 */
2371 targFmt = "";
2372 } else {
2373 targFmt = TARG_FMT;
2374 }

--- 1022 unchanged lines hidden ---