mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: grub; ipxe-qemu: Fix build on 32-bit x86.
* gnu/packages/bootloaders.scm (grub) [native-inputs] <binutils-i386>: binutils' #configure-flags is a gexp instead of a simple list, so use gexp handling procedures when setting flags. * gnu/packages/bootloaders.scm (ipxe-qemu) [native-inputs] <binutils-64-bit-bfd>: Likewise. Change-Id: If93b0a972570d75c7e26647b154be8afc76cf6e0 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
1fd059a14a
commit
de96a26096
1 changed files with 2 additions and 2 deletions
|
@ -284,7 +284,7 @@
|
|||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments binutils)
|
||||
((#:configure-flags flags ''())
|
||||
`(cons "--enable-64-bit-bfd" ,flags)))))))
|
||||
#~(cons* "--enable-64-bit-bfd" #$flags)))))))
|
||||
(list (make-ld-wrapper "ld-wrapper-i386"
|
||||
#:binutils binutils)
|
||||
binutils))
|
||||
|
@ -2078,7 +2078,7 @@ the features of iPXE without the hassle of reflashing.")
|
|||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments binutils)
|
||||
((#:configure-flags flags ''())
|
||||
`(cons "--enable-64-bit-bfd" ,flags)))))))
|
||||
#~(cons* "--enable-64-bit-bfd" #$flags)))))))
|
||||
(modify-inputs (package-native-inputs ipxe)
|
||||
(prepend edk2-tools
|
||||
(make-ld-wrapper "ld-wrapper-64-bit-bfd"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue