gnutls: disable parallel builds

This commit is contained in:
Ludovic Courtès 2012-12-01 15:18:12 +01:00
parent d4d4528833
commit 366689a448

View File

@ -26,7 +26,10 @@ stdenv.mkDerivation (rec {
else ""} else ""}
''; '';
enableParallelBuilding = true; # Build of the Guile bindings is not parallel-safe. See
# <http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=330995a920037b6030ec0282b51dde3f8b493cad>
# for the actual fix.
enableParallelBuilding = false;
buildInputs = [ zlib lzo ] buildInputs = [ zlib lzo ]
++ stdenv.lib.optional guileBindings guile; ++ stdenv.lib.optional guileBindings guile;