mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: coreutils-boot0: Fix building on arm architectures.
* gnu/packages/commencement.scm (coreutils-boot0)[arguments]: When building for arm architectures skip building some programs.
This commit is contained in:
parent
6454208222
commit
9782c45292
1 changed files with 9 additions and 0 deletions
|
@ -1969,6 +1969,15 @@ (define coreutils-boot0
|
|||
(arguments
|
||||
`(#:tests? #f
|
||||
#:implicit-inputs? #f
|
||||
,@(if (target-arm?)
|
||||
;; Some binaries fail to build.
|
||||
`(#:configure-flags '(,(string-append
|
||||
"--enable-no-install-program="
|
||||
;; the defaults
|
||||
"arch,coreutils,hostname"
|
||||
;; fails on aarch64
|
||||
",timeout,sort")))
|
||||
'())
|
||||
#:guile ,%bootstrap-guile
|
||||
,@(package-arguments coreutils)))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue