mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-11 23:08:30 +01:00
Fix -j argument to cabal #141
This commit is contained in:
parent
f4ef676859
commit
b79c6dae41
@ -31,7 +31,7 @@ defaultBuildSettings cores version = BuildSettings
|
||||
case cores of
|
||||
Nothing -> ["-j"]
|
||||
Just 1 -> []
|
||||
Just j -> ["-j", show j]
|
||||
Just j -> ["-j" ++ show j]
|
||||
, testWorkerThreads = 4
|
||||
, buildDocs = True
|
||||
, tarballDir = "patching/tarballs"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user