From 995e7c800b7a603569989d9eaeeab975ce4ffcc4 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 2 Mar 2026 18:32:29 +0100 Subject: gnu: make-propeller-binutils: Fix syntax error. * gnu/packages/embedded.scm (make-propeller-binutils)[arguments]: Simplify by only using SUBSTITUTE-KEYWORD-ARGUMENTS. Fixes . Change-Id: If955af9d4c10790b767dc9e18b80ea718f33e859 --- gnu/packages/embedded.scm | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm index 870ad8ac179..f5fa70c75df 100644 --- a/gnu/packages/embedded.scm +++ b/gnu/packages/embedded.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2016, 2017, 2018, 2019, 2023, 2024, 2025 Ricardo Wurmus +;;; Copyright © 2016-2019, 2023-2026 Ricardo Wurmus ;;; Copyright © 2016, 2017 Theodoros Foradis ;;; Copyright © 2016 David Craven ;;; Copyright © 2017, 2020 Efraim Flashner @@ -1069,17 +1069,16 @@ with a layered architecture of JTAG interface and TAP support.") "0w0dff3s7wv2d9m78a4jhckiik58q38wx6wpbba5hzbs4yxz35ck")) (patches '()))) (arguments - (list - ;; FIXME: For some reason there are many test failures. It's not - ;; obvious how to fix the failures. - #:tests? #f - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'chdir - (lambda _ (chdir "binutils") #t)) - #$@(substitute-keyword-arguments (package-arguments xbinutils) - ((#:configure-flags flags) - #~(cons "--disable-werror" #$flags)))))) + (substitute-keyword-arguments (package-arguments xbinutils) + ((#:configure-flags flags) + #~(cons "--disable-werror" #$flags)) + ;; FIXME: For some reason there are many test failures. It's not + ;; obvious how to fix the failures. + ((#:tests? tests? #false) #false) + ((#:phases phases '%standard-phases) + `(modify-phases ,phases + (add-after 'unpack 'chdir + (lambda _ (chdir "binutils"))))))) (native-inputs `(("bison" ,bison) ("flex" ,flex) -- cgit v1.3