gnu: kernel-config: Remove redundant file-exists? check.
* gnu/packages/linux.scm (kernel-config): Remove redundant file-exists? check.master
parent
0b75986983
commit
d6feaf6e8f
|
@ -184,7 +184,7 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration."
|
||||||
(if variant (string-append variant "-") "")
|
(if variant (string-append variant "-") "")
|
||||||
arch ".conf"))
|
arch ".conf"))
|
||||||
(file (string-append "gnu/packages/" name)))
|
(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
|
(define %default-extra-linux-options
|
||||||
`(("CONFIG_NET_9P" . m)
|
`(("CONFIG_NET_9P" . m)
|
||||||
|
|
Reference in New Issue