[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: REMOVEME gnu: commencement: m4-boot0: Undo effect of m4 patch.
From: |
guix-commits |
Subject: |
02/02: REMOVEME gnu: commencement: m4-boot0: Undo effect of m4 patch. |
Date: |
Mon, 25 Nov 2024 14:39:37 -0500 (EST) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit a36fe3204bf28c08ad76024a2be69f0269fbd9d9
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Mon Nov 25 19:50:05 2024 +0100
REMOVEME gnu: commencement: m4-boot0: Undo effect of m4 patch.
XXX Avoid a world rebuild at this time.
For any and all *-boot0 packages that have #:tests? #f we should re-consider
inheriting (their phases) from base.scm.
* gnu/packages/commencement.scm (m4-boot0)[arguments]: When building
for the 64bit Hurd, restore empty #:configure-flags.
Change-Id: I6970ddcb1eda44e47bc8d8c4121b7fb2d9f0ae71
---
gnu/packages/commencement.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 864c326122..a48cfb8389 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2543,7 +2543,11 @@ exec " gcc "/bin/" program
(arguments
`(#:guile ,%bootstrap-guile
#:implicit-inputs? #f
- ,@(package-arguments m4)
+ ,@(if (host-hurd64?)
+ (substitute-keyword-arguments (package-arguments m4)
+ ((#:configure-flags flags '())
+ ''()))
+ (package-arguments m4))
;; Ignore test failure in gnulib for armhf/aarch64 and Hurd
#:tests? ,(and (not (target-arm?))
(not (target-hurd?)))))))