From 2ad6eb0568ed69127aea987c009138e03b5b8954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 2 Apr 2020 10:58:38 +0200 Subject: guix system: Use 'mapm/accumulate-builds'. * guix/scripts/system.scm (perform-action): Use 'mapm/accumulate-builds' instead of 'mapm'. --- guix/scripts/system.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm index a178761203..4937e68115 100644 --- a/guix/scripts/system.scm +++ b/guix/scripts/system.scm @@ -825,10 +825,10 @@ static checks." ;; For 'init' and 'reconfigure', always build BOOTCFG, even if ;; --no-bootloader is passed, because we then use it as a GC root. ;; See . - (drvs (mapm %store-monad lower-object - (if (memq action '(init reconfigure)) - (list sys bootcfg) - (list sys)))) + (drvs (mapm/accumulate-builds lower-object + (if (memq action '(init reconfigure)) + (list sys bootcfg) + (list sys)))) (% (if derivations-only? (return (for-each (compose println derivation-file-name) drvs)) -- cgit v1.2.3