me
/
guix
Archived
1
0
Fork 0

gnu: m4-boot0: Fix build on arm architectures.

* gnu/packages/commencement.scm (m4-boot0)[arguments]: Skip tests when
building for arm architectures.
master
Efraim Flashner 2022-06-28 10:15:06 +03:00
parent 4d6a9364bb
commit f926e43170
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 3 additions and 1 deletions

View File

@ -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.