GNU bug report logs -
#72882
[PATCH core-updates] gnu: grub; ipxe-qemu: Fix build on 32-bit x86.
Previous Next
Reported by: André Batista <nandre <at> riseup.net>
Date: Thu, 29 Aug 2024 23:35:01 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Fri, 30 Aug 2024 10:44:32 +0200
with message-id <87ed66e6xb.fsf <at> gnu.org>
and subject line Re: bug#72882: [PATCH core-updates] gnu: grub; ipxe-qemu: Fix build on 32-bit x86.
has caused the debbugs.gnu.org bug report #72882,
regarding [PATCH core-updates] gnu: grub; ipxe-qemu: Fix build on 32-bit x86.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
72882: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=72882
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* 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
---
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 @@ (define-public grub
(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 @@ (define-public ipxe-qemu
(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"
base-commit: 87cc46aefce0072dc83e667d85a59a34eecfd89f
--
2.45.2
[Message part 3 (message/rfc822, inline)]
Hi André,
André Batista <nandre <at> riseup.net> skribis:
> * 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
Applied, thanks!
Ludo’.
This bug report was last modified 266 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.