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:
Ludovic Courtès 2024-01-15 14:37:14 +01:00
parent 0570c7e7d7
commit c24db4693f
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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)))))