mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 00:26:33 +01:00
gnu: commencement: file: Build fix for ARM.
* gnu/packages/commencement.scm (file)[arm-linux, aarch64-linux]: Configure with --disable-dependency-tracking. Fixes build on arm/Aarch64.
This commit is contained in:
parent
b06199e0e0
commit
70a27b445e
1 changed files with 6 additions and 1 deletions
|
@ -2595,7 +2595,12 @@ (define file
|
|||
(package
|
||||
(inherit (@ (gnu packages file) file))
|
||||
(arguments
|
||||
`(#:configure-flags '("--disable-bzlib")))))
|
||||
`(#:configure-flags
|
||||
`("--disable-bzlib"
|
||||
,,@(match (%current-system)
|
||||
((or "arm-linux" "aarch64-linux")
|
||||
'("--disable-dependency-tracking"))
|
||||
(_ '())))))))
|
||||
|
||||
(define file-boot0
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue