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:
parent
d75a0cd986
commit
6b8f7c397a
1 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue