This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch core-updates
in repository guix.
The following commit(s) were added to refs/heads/core-updates by this push:
new f926e43170 gnu: m4-boot0: Fix build on arm architectures.
f926e43170 is described below
commit f926e43170f9deb44e747b9ce30f9553f6289dbb
Author: Efraim Flashner <[email protected]>
AuthorDate: Tue Jun 28 10:15:06 2022 +0300
gnu: m4-boot0: Fix build on arm architectures.
* gnu/packages/commencement.scm (m4-boot0)[arguments]: Skip tests when
building for arm architectures.
---
gnu/packages/commencement.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 19db0def4e..f7574aaa15 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2415,7 +2415,9 @@ exec " gcc "/bin/" program
(arguments
`(#:guile ,%bootstrap-guile
#:implicit-inputs? #f
- ,@(package-arguments m4)))))
+ ,@(package-arguments m4)
+ ;; Ignore test failure in gnulib for armhf/aarch64.
+ #:tests? ,(not (target-arm?))))))
(define bison-boot0
;; This Bison is needed to build MiG so we need it early in the process.