marusich pushed a commit to branch wip-ppc64le
in repository guix.

commit 70265b0bb45a9463643ab8e6ba7000ddcf9ee447
Author: Leo Le Bouter <[email protected]>
AuthorDate: Mon Feb 8 01:30:43 2021 +0100

    gnu: guile-avahi: Fix compilation on powerpc64le-linux.
    
    * gnu/packages/guile-xyz.scm (guile-avahi)[arguments]: Parallel builds fail 
on
    powerpc64le-linux. Set "#:parallel-build?" to "#f".
    
    Signed-off-by: Chris Marusich <[email protected]>
---
 gnu/packages/guile-xyz.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 14c5eff..c293bf8 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -34,6 +34,7 @@
 ;;; Copyright © 2020 Leo Prikler <[email protected]>
 ;;; Copyright © 2020, 2021 pukkamustard <[email protected]>
 ;;; Copyright © 2021 Bonface Munyoki Kilyungi <[email protected]>
+;;; Copyright © 2021 Leo Le Bouter <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4232,6 +4233,9 @@ errors.")
                              ,@%gnu-build-system-modules)
          #:make-flags
          '("GUILE_AUTO_COMPILE=0")    ;to prevent guild warnings
+         ;; Parallel builds fail on powerpc64le-linux.
+         ;; See 
https://lists.nongnu.org/archive/html/guile-avahi-bugs/2021-01/msg00000.html
+         #:parallel-build? #f
          #:phases
          (modify-phases %standard-phases
            (add-before 'check 'fix-guile-avahi-file-name

Reply via email to