mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: gnustandards: Build reproducibly.
Avoid embedding timestamp in info.gz files. * gnu/packages/gnu-doc.scm (gnustandards)[arguments]: Pass "-n" to gzip invocations.
This commit is contained in:
parent
bf9da5ccc9
commit
615239d5ca
1 changed files with 2 additions and 2 deletions
|
@ -89,8 +89,8 @@ (module "gnustandards")
|
|||
(string-append source "/maintain.texi"))
|
||||
(invoke "makeinfo" "--output" info-dir
|
||||
(string-append source "/standards.texi"))
|
||||
(invoke "gzip" (string-append info-dir "/maintain.info"))
|
||||
(invoke "gzip" (string-append info-dir "/standards.info"))))))
|
||||
(invoke "gzip" "-n" (string-append info-dir "/maintain.info"))
|
||||
(invoke "gzip" "-n" (string-append info-dir "/standards.info"))))))
|
||||
(home-page "https://www.gnu.org/prep/standards/")
|
||||
(synopsis "GNU coding standards and maintainer information")
|
||||
(description "The GNU Coding Standards were written by Richard Stallman
|
||||
|
|
Loading…
Reference in a new issue