cabal install with -j1 to work around ghc qemu threading bug

This commit is contained in:
Joey Hess 2014-12-03 21:11:22 -04:00
parent 48939c88f7
commit 068b99f09f

View file

@ -52,9 +52,9 @@ patched () {
installgitannexdeps () {
pushd ../..
echo "cabal install QuickCheck -f-templateHaskell"
cabal install QuickCheck -f-templateHaskell
cabal install -j1 QuickCheck -f-templateHaskell
echo cabal install --only-dependencies "$@"
cabal install --only-dependencies "$@"
cabal install -j1 --only-dependencies "$@"
popd
}