diff options
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/embedded.scm | 23 |
1 files changed, 11 insertions, 12 deletions
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 <rekado@elephly.net> +;;; Copyright © 2016-2019, 2023-2026 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016, 2017 Theodoros Foradis <theodoros@foradis.org> ;;; Copyright © 2016 David Craven <david@craven.ch> ;;; Copyright © 2017, 2020 Efraim Flashner <efraim@flashner.co.il> @@ -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) |
