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
|
@ -796,7 +796,8 @@ dependencies are known to build on SYSTEM."
|
|||
|
||||
(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 New Issue