diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-06-28 10:15:06 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-06-28 10:15:06 +0300 |
commit | f926e43170f9deb44e747b9ce30f9553f6289dbb (patch) | |
tree | 87a6b2aa566307197d0f6669a84701af7903443a /gnu | |
parent | 4d6a9364bb03d5cda9090ac44bd3c9dd1ea9abe8 (diff) | |
download | guix-f926e43170f9deb44e747b9ce30f9553f6289dbb.tar.gz |
gnu: m4-boot0: Fix build on arm architectures.
* gnu/packages/commencement.scm (m4-boot0)[arguments]: Skip tests when building for arm architectures.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/commencement.scm | 4 |
1 files changed, 3 insertions, 1 deletions
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. |