mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-23 12:41:58 +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
|
case cores of
|
||||||
Nothing -> ["-j"]
|
Nothing -> ["-j"]
|
||||||
Just 1 -> []
|
Just 1 -> []
|
||||||
Just j -> ["-j", show j]
|
Just j -> ["-j" ++ show j]
|
||||||
, testWorkerThreads = 4
|
, testWorkerThreads = 4
|
||||||
, buildDocs = True
|
, buildDocs = True
|
||||||
, tarballDir = "patching/tarballs"
|
, tarballDir = "patching/tarballs"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user