... but of course, I forgot to add the actual patch. Sheesh...

This commit is contained in:
Petr Machata 2007-10-05 14:54:40 +00:00
parent d199711780
commit 25d5acf904
1 changed files with 18 additions and 0 deletions

18
make-3.81-jobserver.patch Normal file
View File

@ -0,0 +1,18 @@
diff -urp make-3.81/main.c make-3.81-pm/main.c
--- make-3.81/main.c 2007-09-24 15:28:34.000000000 +0200
+++ make-3.81-pm/main.c 2007-09-24 15:32:50.000000000 +0200
@@ -1669,8 +1669,12 @@ main (int argc, char **argv, char **envp
if (job_slots > 0)
{
- close (job_fds[0]);
- close (job_fds[1]);
+ if (restarts == 0)
+ {
+ close (job_fds[0]);
+ close (job_fds[1]);
+ }
+
job_fds[0] = job_fds[1] = -1;
free (jobserver_fds->list);
free (jobserver_fds);