From d46e71d3a76c3781cef806b9334201aff3ee6847 Mon Sep 17 00:00:00 2001
From: Misty De Meo <mistydemeo@gmail.com>
Date: Thu, 25 Feb 2016 10:12:12 -0800
Subject: [PATCH] Distribution.Simple.Setup: remove job cap

Fixes #3191.
---
 Cabal/Distribution/Simple/Setup.hs | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Cabal/Distribution/Simple/Setup.hs b/Cabal/Distribution/Simple/Setup.hs
index f9ef3244c6..03969cc71f 100644
--- a/Cabal/Distribution/Simple/Setup.hs
+++ b/Cabal/Distribution/Simple/Setup.hs
@@ -2237,7 +2237,6 @@ optionNumJobs get set =
         _        -> case reads s of
           [(n, "")]
             | n < 1     -> Left "The number of jobs should be 1 or more."
-            | n > 64    -> Left "You probably don't want that many jobs."
             | otherwise -> Right (Just n)
           _             -> Left "The jobs value should be a number or '$ncpus'"
 
-- 
GitLab