diff options
-rw-r--r-- | distro/packages/gnutls.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/distro/packages/gnutls.scm b/distro/packages/gnutls.scm index 7cc64910d0..4498e8d117 100644 --- a/distro/packages/gnutls.scm +++ b/distro/packages/gnutls.scm @@ -62,6 +62,12 @@ portable, and only require an ANSI C89 platform.") (base32 "0fff9frz0ycbnppfn0w4a2s9x27k21l4hh9zbax3v7a8cg33dcpw")))) (build-system gnu-build-system) + + ;; 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. + (arguments '(#:parallel-build? #f)) + (inputs `(("guile" ,guile-2.0) ;; ("lzo" ,lzo) |