diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-12-10 21:42:02 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-12-15 17:32:11 +0100 |
commit | 0793833c59e727d5d471fe46c8e0e44c811b9621 (patch) | |
tree | b8dd7d4ab27051e8a24299ffab3fc84091df488a /guix/nar.scm | |
parent | 2aa512ec2843991804b5bf345c80abdb2b993bdc (diff) |
database: Remove #:deduplicate? from 'register-items'.
It is now up to the caller to deduplicate store contents.
* guix/store/database.scm (register-items): Remove #:deduplicate?
parameter and call to 'deduplicate'.
(register-path): Call 'deduplicate' when #:deduplicate? is true.
* gnu/build/image.scm (register-closure): Adjust call accordingly.
* gnu/build/vm.scm (register-closure): Likewise.
* guix/nar.scm (finalize-store-file): Likewise.
* guix/scripts/pack.scm (store-database): Likewise.
Diffstat (limited to 'guix/nar.scm')
-rw-r--r-- | guix/nar.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/guix/nar.scm b/guix/nar.scm index 947b393d84..a817b56007 100644 --- a/guix/nar.scm +++ b/guix/nar.scm @@ -118,8 +118,7 @@ held." ;; Register TARGET. The 'restore-file' call took care of ;; deduplication, timestamps, and permissions. (register-items db - (list (store-info target deriver references)) - #:deduplicate? #f)) + (list (store-info target deriver references)))) (when lock? (delete-file (string-append target ".lock")) |