mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
build-system: linux-module: Fix cross-compiling.
* guix/build-system/linux-module.scm (linux-module-build-cross): Remove %build-host-inputs's quote. Change-Id: I58fbd5ad51a60115acb5852df133b88549f1bdcb Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
66b506a373
commit
9b66aaa7cc
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||
;;; Copyright © 2021 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -222,7 +223,7 @@ (define builder
|
|||
(use-modules #$@(sexp->gexp modules))
|
||||
|
||||
(define %build-host-inputs
|
||||
'#+(input-tuples->gexp build-inputs))
|
||||
#+(input-tuples->gexp build-inputs))
|
||||
|
||||
(define %build-target-inputs
|
||||
(append #$(input-tuples->gexp host-inputs)
|
||||
|
|
Loading…
Reference in a new issue