mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: linux-libre-headers: Do not retain reference to the bootstrap tools.
* gnu/packages/linux.scm (linux-libre-headers)[install-phase]: Remove ".install" files from the output. [arguments]: Add #:allowed-references.
This commit is contained in:
parent
67dfa1986d
commit
b15389e159
2 changed files with 17 additions and 11 deletions
|
@ -106,12 +106,21 @@
|
|||
(and (zero? (system* "make"
|
||||
(string-append "INSTALL_HDR_PATH=" out)
|
||||
"headers_install"))
|
||||
(mkdir (string-append out "/include/config"))
|
||||
(call-with-output-file
|
||||
(string-append out
|
||||
"/include/config/kernel.release")
|
||||
(lambda (p)
|
||||
(format p "~a-default~%" ,version))))))))
|
||||
(begin
|
||||
(mkdir (string-append out "/include/config"))
|
||||
(call-with-output-file
|
||||
(string-append out
|
||||
"/include/config/kernel.release")
|
||||
(lambda (p)
|
||||
(format p "~a-default~%" ,version)))
|
||||
|
||||
;; Remove the '.install' and '..install.cmd' files; the
|
||||
;; latter contains store paths, which pulls in bootstrap
|
||||
;; binaries in the build environment, and prevents bit
|
||||
;; reproducibility for the bootstrap binaries.
|
||||
(for-each delete-file (find-files out "\\.install"))
|
||||
|
||||
#t))))))
|
||||
(package
|
||||
(name "linux-libre-headers")
|
||||
(version version)
|
||||
|
@ -133,6 +142,7 @@
|
|||
(alist-replace
|
||||
'install ,install-phase
|
||||
(alist-delete 'configure %standard-phases)))
|
||||
#:allowed-references ()
|
||||
#:tests? #f))
|
||||
(synopsis "GNU Linux-Libre kernel headers")
|
||||
(description "Headers of the Linux-Libre kernel.")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue