[commit: ghc] wip/nfs-locking: Minor revision (c9e7570)
git at git.haskell.org
git at git.haskell.org
Fri Oct 27 00:17:01 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/nfs-locking
Link : http://ghc.haskell.org/trac/ghc/changeset/c9e7570bea7562ca05b6c1469759dfdf9e675e06/ghc
>---------------------------------------------------------------
commit c9e7570bea7562ca05b6c1469759dfdf9e675e06
Author: Andrey Mokhov <andrey.mokhov at gmail.com>
Date: Sat Jun 4 21:56:12 2016 +0100
Minor revision
>---------------------------------------------------------------
c9e7570bea7562ca05b6c1469759dfdf9e675e06
src/Settings/Builders/Make.hs | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/Settings/Builders/Make.hs b/src/Settings/Builders/Make.hs
index afb46d7..7283b4b 100644
--- a/src/Settings/Builders/Make.hs
+++ b/src/Settings/Builders/Make.hs
@@ -7,8 +7,8 @@ import Settings
makeBuilderArgs :: Args
makeBuilderArgs = do
threads <- shakeThreads <$> lift getShakeOptions
- let j = "-j" ++ show threads
+ let t = show threads
mconcat
- [ builder (Make gmpBuildPath ) ? append ["MAKEFLAGS=" ++ j]
- , builder (Make libffiBuildPath ) ? append ["MAKEFLAGS=" ++ j, "install"]
- , builder (Make "testsuite/tests") ? append ["THREADS=" ++ show threads, "fast"] ]
+ [ builder (Make gmpBuildPath ) ? append ["MAKEFLAGS=-j" ++ t]
+ , builder (Make libffiBuildPath ) ? append ["MAKEFLAGS=-j" ++ t, "install"]
+ , builder (Make "testsuite/tests") ? append ["THREADS=" ++ t, "fast"] ]
More information about the ghc-commits
mailing list