guix build: Use 'map/accumulate-builds'.
* guix/scripts/build.scm (options->derivations): Use 'map/accumulate-builds' instead of 'append-map'.master
parent
c40bf5816c
commit
1213ea9bd9
|
@ -920,8 +920,10 @@ build."
|
||||||
(with-unbound-variable-handling
|
(with-unbound-variable-handling
|
||||||
(parameterize ((%graft? graft?))
|
(parameterize ((%graft? graft?))
|
||||||
(append-map (lambda (system)
|
(append-map (lambda (system)
|
||||||
(append-map (cut compute-derivation <> system)
|
(concatenate
|
||||||
things-to-build))
|
(map/accumulate-builds store
|
||||||
|
(cut compute-derivation <> system)
|
||||||
|
things-to-build)))
|
||||||
systems))))
|
systems))))
|
||||||
|
|
||||||
(define (show-build-log store file urls)
|
(define (show-build-log store file urls)
|
||||||
|
|
Reference in New Issue