mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: binutils: Use gexps.
This is the result of applying ‘guix style -S arguments’ and making small adjustments. * gnu/packages/base.scm (binutils)[arguments]: Use gexps. (binutils-2.33, binutils-gold): Likewise. * gnu/packages/commencement.scm (binutils-mesboot0, binutils-mesboot1) (binutils-boot0, binutils-final): Likewise. * gnu/packages/cross-base.scm (cross-binutils*): Adjust accordingly. * gnu/packages/embedded.scm (make-propeller-binutils): Use gexps. * gnu/packages/make-bootstrap.scm (%binutils-static): Use gexps. Change-Id: I59cbe29760784b09e6d4e80beca9153cb9b495a7
This commit is contained in:
parent
f9f2198d82
commit
77ee97628a
5 changed files with 151 additions and 144 deletions
|
@ -746,16 +746,17 @@ with a layered architecture of JTAG interface and TAP support.")
|
|||
"0w0dff3s7wv2d9m78a4jhckiik58q38wx6wpbba5hzbs4yxz35ck"))
|
||||
(patches '())))
|
||||
(arguments
|
||||
`(;; 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)))))
|
||||
(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))))))
|
||||
(native-inputs
|
||||
`(("bison" ,bison)
|
||||
("flex" ,flex)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue