summaryrefslogtreecommitdiff
path: root/gnu/build/install.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2018-06-07 22:35:36 +0200
committerLudovic Courtès <ludo@gnu.org>2018-06-14 11:17:00 +0200
commit078c2329c0ffc88ac8e334fcea5e025ee6410e62 (patch)
tree136a8598580930898073fc1dae0664d45d33d1f4 /gnu/build/install.scm
parent31a63be8784b2769c2db21388f788a8b975fd4e1 (diff)
downloadguix-patches-078c2329c0ffc88ac8e334fcea5e025ee6410e62.tar
guix-patches-078c2329c0ffc88ac8e334fcea5e025ee6410e62.tar.gz
install: Use 'reset-timestamps' from (guix store database).
* gnu/build/install.scm (reset-timestamps): Remove. * gnu/build/vm.scm: Use 'reset-timestamps' from (guix store database).
Diffstat (limited to 'gnu/build/install.scm')
-rw-r--r--gnu/build/install.scm15
1 files changed, 0 insertions, 15 deletions
diff --git a/gnu/build/install.scm b/gnu/build/install.scm
index 82eb63d726..5e84cd6f69 100644
--- a/gnu/build/install.scm
+++ b/gnu/build/install.scm
@@ -26,7 +26,6 @@
#:export (install-boot-config
evaluate-populate-directive
populate-root-file-system
- reset-timestamps
register-closure
populate-single-profile-directory))
@@ -145,20 +144,6 @@ includes /etc, /var, /run, /bin/sh, etc., and all the symlinks to SYSTEM."
(try))
(apply throw args)))))))
-(define (reset-timestamps directory)
- "Reset the timestamps of all the files under DIRECTORY, so that they appear
-as created and modified at the Epoch."
- (display "clearing file timestamps...\n")
- (for-each (lambda (file)
- (let ((s (lstat file)))
- ;; XXX: Guile uses libc's 'utime' function (not 'futime'), so
- ;; the timestamp of symlinks cannot be changed, and there are
- ;; symlinks here pointing to /gnu/store, which is the host,
- ;; read-only store.
- (unless (eq? (stat:type s) 'symlink)
- (utime file 0 0 0 0))))
- (find-files directory #:directories? #t)))
-
(define* (register-closure prefix closure
#:key
(deduplicate? #t) (reset-timestamps? #t)