mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
guix build: Use 'map/accumulate-builds'.
* guix/scripts/build.scm (options->derivations): Use 'map/accumulate-builds' instead of 'append-map'.
This commit is contained in:
parent
c40bf5816c
commit
1213ea9bd9
1 changed files with 4 additions and 2 deletions
|
@ -920,8 +920,10 @@ (define (compute-derivation obj system)
|
|||
(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)
|
||||
|
|
Loading…
Reference in a new issue