Fix -j argument to cabal #141

This commit is contained in:
Michael Snoyman 2013-11-28 18:04:06 +02:00
parent f4ef676859
commit b79c6dae41

View file

@ -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"