mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
packages: Apply target triplet in bag-transitive-host-inputs.
Fixes a bug where propagated inputs that should be cross-compiled are instead compiled for the host system. * guix/packages.scm (bag-transitive-host-inputs): Call transitive-inputs in the context of the bag's target system triplet.
This commit is contained in:
parent
e85bb00c55
commit
6cef554be8
1 changed files with 2 additions and 1 deletions
|
@ -796,7 +796,8 @@ (define (bag-transitive-build-inputs bag)
|
|||
|
||||
(define (bag-transitive-host-inputs bag)
|
||||
"Same as 'package-transitive-target-inputs', but applied to a bag."
|
||||
(transitive-inputs (bag-host-inputs bag)))
|
||||
(parameterize ((%current-target-system (bag-target bag)))
|
||||
(transitive-inputs (bag-host-inputs bag))))
|
||||
|
||||
(define (bag-transitive-target-inputs bag)
|
||||
"Return the \"target inputs\" of BAG, recursively."
|
||||
|
|
Loading…
Reference in a new issue