From 1c86b95b10d2e6a22d2ac94e07b975796c52ce38 Mon Sep 17 00:00:00 2001 From: harti Date: Mon, 20 Dec 2004 10:14:05 +0000 Subject: maxJobs is declared extern in job.h so it cannot be static in job.c. PR: bin/75210 Submitted by: Andreas Jochens; Robert Millan --- usr.bin/make/job.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c index 76ebe75..aabf445 100644 --- a/usr.bin/make/job.c +++ b/usr.bin/make/job.c @@ -212,7 +212,7 @@ char *shellPath = NULL, /* full pathname of executable image */ *shellName = NULL; /* last component of shell */ -static int maxJobs; /* The most children we can run at once */ +int maxJobs; /* The most children we can run at once */ STATIC int nJobs; /* The number of children currently running */ /* The structures that describe them */ -- cgit v1.1