~ruther/guix-local

6541673354f28b1375bef503373ee2169e1dc325 — Mathieu Othacehe 8 years ago b574cee
gnu: linux: Fix kconfig selection.

* gnu/packages/linux.scm (make-linux-libre): When cross-compiling,
  "kconfig" field is in native-inputs variable. So config is always #f
  when cross-compiling linux.
1 files changed, 1 insertions(+), 1 deletions(-)

M gnu/packages/linux.scm
M gnu/packages/linux.scm => gnu/packages/linux.scm +1 -1
@@ 319,7 319,7 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration."
             (setenv "EXTRA_VERSION" ,extra-version)

             (let ((build  (assoc-ref %standard-phases 'build))
                   (config (assoc-ref inputs "kconfig")))
                   (config (assoc-ref (or native-inputs inputs) "kconfig")))

               ;; Use a custom kernel configuration file or a default
               ;; configuration file.