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