guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/04: gnu: wslay: Fix build.


From: guix-commits
Subject: 01/04: gnu: wslay: Fix build.
Date: Sat, 22 Feb 2020 17:52:41 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit 90d192b2f7f060e4d2e5c827533e6fe0545a04ba
Author: Tobias Geerinckx-Rice <address@hidden>
AuthorDate: Sat Feb 22 23:33:38 2020 +0100

    gnu: wslay: Fix build.
    
    * gnu/packages/web.scm (wslay)[arguments]: Don't build in parallel.
---
 gnu/packages/web.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 2c977ba..4976059 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -1163,10 +1163,13 @@ high performance.")
        (sha256
         (base32 "0ak9a6hsanhys40yhv7c2gqkfghpm6jx36j1pnml8ajvgaky5q98"))))
     (build-system gnu-build-system)
+    (arguments
+     ;; Parallel builds don't reliably succeed.
+     `(#:parallel-build? #f))
     (native-inputs
      `(("autoconf" ,autoconf)
        ("automake" ,automake)
-       ("cunit" ,cunit) ; For tests.
+       ("cunit" ,cunit)                 ; for tests
        ("libtool" ,libtool)
        ("pkg-config" ,pkg-config)
        ("python-sphinx" ,python-sphinx)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]