mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
profiles: Silence Info installation.
* guix/profiles.scm (info-dir-file)[build]: Pass --silent to 'install-info'.
This commit is contained in:
parent
0c4e762570
commit
4fef1e850e
1 changed files with 1 additions and 1 deletions
|
@ -469,7 +469,7 @@ (define (info-files top)
|
|||
(define (install-info info)
|
||||
(setenv "PATH" (string-append #+gzip "/bin")) ;for info.gz files
|
||||
(zero?
|
||||
(system* (string-append #+texinfo "/bin/install-info")
|
||||
(system* (string-append #+texinfo "/bin/install-info") "--silent"
|
||||
info (string-append #$output "/share/info/dir"))))
|
||||
|
||||
(mkdir-p (string-append #$output "/share/info"))
|
||||
|
|
Loading…
Reference in a new issue