mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
profiles: Handle packages without a 'share/info' directory.
Reported by Mark H. Weaver. * guix/profiles.scm (info-dir-file): Handle the case where 'scandir' returns #f.
This commit is contained in:
parent
6b3342af59
commit
c2815c0f46
1 changed files with 1 additions and 1 deletions
|
@ -393,7 +393,7 @@ (define (info-file? file)
|
|||
(define (info-files top)
|
||||
(let ((infodir (string-append top "/share/info")))
|
||||
(map (cut string-append infodir "/" <>)
|
||||
(scandir infodir info-file?))))
|
||||
(or (scandir infodir info-file?) '()))))
|
||||
|
||||
(define (install-info info)
|
||||
(zero?
|
||||
|
|
Loading…
Reference in a new issue