mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: kernel-config: Remove redundant file-exists? check.
* gnu/packages/linux.scm (kernel-config): Remove redundant file-exists? check.
This commit is contained in:
parent
0b75986983
commit
d6feaf6e8f
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ (define* (kernel-config arch #:key variant)
|
|||
(if variant (string-append variant "-") "")
|
||||
arch ".conf"))
|
||||
(file (string-append "gnu/packages/" name)))
|
||||
(if file-exists? (search-path %load-path file) #f)))
|
||||
(search-path %load-path file)))
|
||||
|
||||
(define %default-extra-linux-options
|
||||
`(("CONFIG_NET_9P" . m)
|
||||
|
|
Loading…
Reference in a new issue