mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
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 <cmmarusich@gmail.com>
This commit is contained in:
parent
4cc2d2aa59
commit
69b3907adf
1 changed files with 4 additions and 0 deletions
|
@ -35,6 +35,7 @@
|
|||
;;; Copyright © 2020, 2021 pukkamustard <pukkamustard@posteo.net>
|
||||
;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
|
||||
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
||||
;;; Copyright © 2021 Leo Le Bouter <lle-bout@zaclys.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -4262,6 +4263,9 @@ (define-public guile-avahi
|
|||
,@%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
|
||||
|
|
Loading…
Reference in a new issue