mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 05:39:41 -05:00
gnu: binutils-gold: Fix typo.
Fixes a regression introduced in 8e9573784f06ec2af96f9298c6dd4346688888fb. * gnu/packages/base.scm (binutils-gold): Use ‘unquote-splicing’ for the optional ‘skip-gold-testsuite’ phase. Change-Id: Ia08dfe66496aaf2c05df6d3832557f9856ad84a8
This commit is contained in:
parent
0570c7e7d7
commit
c24db4693f
1 changed files with 6 additions and 6 deletions
|
@ -724,13 +724,13 @@ (define-public binutils-gold
|
|||
(substitute* "gold/Makefile.in"
|
||||
(("/bin/sh") (which "sh")))))
|
||||
;; Multiple failing tests on some architectures in the gold testsuite.
|
||||
#$(if (or (target-arm?)
|
||||
#$@(if (or (target-arm?)
|
||||
(target-ppc32?))
|
||||
#~(add-after 'unpack 'skip-gold-testsuite
|
||||
(lambda _
|
||||
(substitute* "gold/Makefile.in"
|
||||
((" testsuite") " "))))
|
||||
#t)))))
|
||||
#~((add-after 'unpack 'skip-gold-testsuite
|
||||
(lambda _
|
||||
(substitute* "gold/Makefile.in"
|
||||
((" testsuite") " ")))))
|
||||
#~())))))
|
||||
(native-inputs (modify-inputs (package-native-inputs binutils)
|
||||
(append bc)))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue