Blame SOURCES/make-4.3-j8k.patch

5605af
diff -Nrup a/src/main.c b/src/main.c
5605af
--- a/src/main.c	2016-05-31 03:17:26.000000000 -0400
5605af
+++ b/src/main.c	2016-09-22 16:18:52.283889265 -0400
5605af
@@ -2051,6 +2051,21 @@ main (int argc, char **argv, char **envp
5605af
     }
5605af
 #endif
5605af
 
5605af
+#ifdef PIPE_BUF
5605af
+  if (job_slots > PIPE_BUF)
5605af
+#elif defined _POSIX_PIPE_BUF
5605af
+  if (job_slots > _POSIX_PIPE_BUF)
5605af
+#else
5605af
+  if (job_slots > 512)
5605af
+#endif
5605af
+    {
5605af
+      O (error, NILF,
5605af
+            _("More parallel jobs (-jN) than this platform can handle requested."));
5605af
+      O (error, NILF, _("Resetting to single job (-j1) mode."));
5605af
+      job_slots = 1;
5605af
+    }
5605af
+
5605af
+
5605af
   /* If we have >1 slot at this point, then we're a top-level make.
5605af
      Set up the jobserver.
5605af