mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: make-bootstrap: Allow bit-reproducibility for 'glibc-stripped'.
* gnu/packages/make-bootstrap.scm (%glibc-stripped): Remove '.install' and '..install.cmd' files.
This commit is contained in:
parent
55a5674f21
commit
c9323eac74
1 changed files with 5 additions and 0 deletions
|
@ -363,6 +363,11 @@ (define %glibc-stripped
|
||||||
(string-append incdir "/asm"))
|
(string-append incdir "/asm"))
|
||||||
(copy-recursively (string-append linux "/include/asm-generic")
|
(copy-recursively (string-append linux "/include/asm-generic")
|
||||||
(string-append incdir "/asm-generic"))
|
(string-append incdir "/asm-generic"))
|
||||||
|
|
||||||
|
;; Remove the '.install' and '..install.cmd' files; the latter
|
||||||
|
;; contains store paths, which prevents bit reproducibility.
|
||||||
|
(for-each delete-file (find-files incdir "\\.install"))
|
||||||
|
|
||||||
#t))))
|
#t))))
|
||||||
(inputs `(("libc" ,(let ((target (%current-target-system)))
|
(inputs `(("libc" ,(let ((target (%current-target-system)))
|
||||||
(if target
|
(if target
|
||||||
|
|
Loading…
Reference in a new issue