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
|
||||
(parameterize ((%graft? graft?))
|
||||
(append-map (lambda (system)
|
||||
(append-map (cut compute-derivation <> system)
|
||||
things-to-build))
|
||||
(concatenate
|
||||
(map/accumulate-builds store
|
||||
(cut compute-derivation <> system)
|
||||
things-to-build)))
|
||||
systems))))
|
||||
|
||||
(define (show-build-log store file urls)
|
||||
|
|
Reference in New Issue