gnu: coreutils-boot0: Fix building on arm architectures.
* gnu/packages/commencement.scm (coreutils-boot0)[arguments]: When building for arm architectures skip building some programs.master
parent
6454208222
commit
9782c45292
|
@ -1969,6 +1969,15 @@ exec " gcc "/bin/" program
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
`(#:tests? #f
|
||||||
#:implicit-inputs? #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
|
#:guile ,%bootstrap-guile
|
||||||
,@(package-arguments coreutils)))))
|
,@(package-arguments coreutils)))))
|
||||||
|
|
||||||
|
|
Reference in New Issue