gnu: commencement: diffutils-boot0: Build fix for ARM.
* gnu/packages/commencement.scm (diffutils-boot0): Add --disable-dependency-tracking. Fixes arm/aarch64 builds.master
parent
0a3e8536d9
commit
b06199e0e0
|
@ -2559,7 +2559,15 @@ exec " gcc "/bin/" program
|
|||
`(#:tests? #f ; the test suite needs diffutils
|
||||
#:guile ,%bootstrap-guile
|
||||
#:implicit-inputs? #f
|
||||
,@(package-arguments diffutils)))))
|
||||
,@(match (%current-system)
|
||||
((or "arm-linux" "aarch64-linux")
|
||||
(substitute-keyword-arguments (package-arguments diffutils)
|
||||
((#:configure-flags flags ''())
|
||||
;; The generated config.status has some problems due to the
|
||||
;; bootstrap environment. Disable dependency tracking to work
|
||||
;; around it.
|
||||
`(cons "--disable-dependency-tracking" ,flags))))
|
||||
(_ '()))))))
|
||||
|
||||
(define findutils-boot0
|
||||
(package
|
||||
|
|
Reference in New Issue