gnu: kernel-config: Remove redundant file-exists? check.

* gnu/packages/linux.scm (kernel-config): Remove redundant file-exists?
  check.
This commit is contained in:
David Craven 2016-09-13 22:45:32 +02:00
parent 0b75986983
commit d6feaf6e8f
No known key found for this signature in database
GPG key ID: C5E051C79C0BECDB

View file

@ -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)