guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch core-updates updated: gnu: binutils-gold: Fix typo.


From: guix-commits
Subject: branch core-updates updated: gnu: binutils-gold: Fix typo.
Date: Mon, 15 Jan 2024 08:38:56 -0500

This is an automated email from the git hooks/post-receive script.

civodul pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new 851e022a11 gnu: binutils-gold: Fix typo.
851e022a11 is described below

commit 851e022a113dcb94c24b83c5527eb7dade82a572
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Jan 15 14:37:14 2024 +0100

    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
---
 gnu/packages/base.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 4523d044fd..6ef4ffc7e9 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -674,13 +674,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)))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]