mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
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.
This commit is contained in:
parent
b574cee361
commit
6541673354
1 changed files with 1 additions and 1 deletions
|
@ -319,7 +319,7 @@ (define* (make-linux-libre version hash supported-systems
|
|||
(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.
|
||||
|
|
Loading…
Reference in a new issue