civodul pushed a commit to branch core-updates
in repository guix.
commit 37bba1c80b7fe465b7a92c30d8afa85f037afff2
Author: André Batista <[email protected]>
AuthorDate: Thu Aug 29 20:32:51 2024 -0300
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 <[email protected]>
---
gnu/packages/bootloaders.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 7baf882bde..353b2c2a16 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -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"