3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

build: asdf-build-system: Improve reproducibility.

* guix/build/asdf-build-system.scm (copy-files-to-output): Reset timestamps of
  source files before compiling.
This commit is contained in:
Guillaume Le Vaillant 2020-01-12 14:29:41 +01:00
parent d75a0cd986
commit 6b8f7c397a
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -79,6 +79,15 @@ valid."
(let ((source (getcwd))
(target (source-directory out name))
(system-path (string-append out %system-install-prefix)))
;; SBCL keeps the modification time of the source file in the compiled
;; file, and the source files might just have been patched by a custom
;; phase. Therefore we reset the modification time of all the source
;; files before compiling.
(for-each (lambda (file)
(let ((s (lstat file)))
(unless (eq? (stat:type s) 'symlink)
(utime file 0 0 0 0))))
(find-files source #:directories? #t))
(copy-recursively source target #:keep-mtime? #t)
(mkdir-p system-path)
(for-each