Date: Sun, 29 Aug 1999 13:48:24 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: "Paul D. Smith" cc: Esa A E Peuha , Laszlo Molnar , djgpp-workers AT delorie DOT com Subject: Re: Make 3.78 is in pretest (fwd) In-Reply-To: <14275.64667.739010.922179@baynetworks.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Wed, 25 Aug 1999, Paul D. Smith wrote: > %% Eli Zaretskii writes: > > ez> I will submit the necessary change. > > OK. Here it is: 1999-08-28 Eli Zaretskii * main.c (main) [__MSDOS__]: Print a warning if they use -j with a non-trivial argument. *** main.c~1 Thu Aug 19 16:08:16 1999 --- main.c Sat Aug 28 17:57:32 1999 *************** int main (int argc, char ** argv) *** 1288,1293 **** --- 1288,1300 ---- default_shell = shell_path; } } + + if (job_slots > 1) + { + error (NILF, + _("warning: parallel execution is not supported on this platform.")); + job_slots = 1; + } #endif /* __MSDOS__ */ /* Decode switches again, in case the variables were set by the makefile. */