hydra: Fix wrong-num-args error when computing the cross jobs.
Fixes a regression introduced in dea91108cf6b9bb46071c8f65c9abf834c5b064d. * build-aux/hydra/gnu-system.scm (hydra-jobs)[cross-jobs](either): Add third parameter and honor it.
This commit is contained in:
parent
530b8bda1f
commit
a69bc7071e
@ -283,9 +283,9 @@ valid."
|
|||||||
(and (string-contains target "mingw")
|
(and (string-contains target "mingw")
|
||||||
(not (string=? "x86_64-linux" system))))
|
(not (string=? "x86_64-linux" system))))
|
||||||
|
|
||||||
(define (either proc1 proc2)
|
(define (either proc1 proc2 proc3)
|
||||||
(lambda (x)
|
(lambda (x)
|
||||||
(or (proc1 x) (proc2 x))))
|
(or (proc1 x) (proc2 x) (proc3 x))))
|
||||||
|
|
||||||
(append-map (lambda (target)
|
(append-map (lambda (target)
|
||||||
(map (lambda (package)
|
(map (lambda (package)
|
||||||
|
Loading…
Reference in New Issue
Block a user