From f926e43170f9deb44e747b9ce30f9553f6289dbb Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 28 Jun 2022 10:15:06 +0300 Subject: [PATCH] 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.