~ruther/guix-local

c24db4693fe26617cc6ce61bf7343c262f44efcf — Ludovic Courtès 2 years ago 0570c7e
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
1 files changed, 6 insertions(+), 6 deletions(-)

M gnu/packages/base.scm
M gnu/packages/base.scm => gnu/packages/base.scm +6 -6
@@ 724,13 724,13 @@ included.")
               (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)))))