efraim pushed a commit to branch wip-ppc64le-for-master in repository guix.
commit 3bfeb9a51be28e42cad78de46b373ac86c1b2218 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 115c3d8..32037e4 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. ;;; @@ -4259,6 +4260,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
