diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-12-01 00:59:08 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-12-01 00:59:08 +0100 |
commit | 967305e88b5b401b63852e157016e0ffa58f48f6 (patch) | |
tree | f665ce626105aa837bc509e72550c5ba715c35ad /distro/packages | |
parent | 3af4e05304574f2cfc6d59a4afc1e6539104afaf (diff) | |
download | patches-967305e88b5b401b63852e157016e0ffa58f48f6.tar patches-967305e88b5b401b63852e157016e0ffa58f48f6.tar.gz |
distro: gnutls: Build sequentially.
* distro/packages/gnutls.scm (gnutls)[arguments]: New field.
Diffstat (limited to 'distro/packages')
-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) |