mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
build-system/trivial: Don't bind `%target' in the builder.
* guix/build-system/trivial.scm (trivial-cross-build): Don't bind `%target' here since this causes problem when BUILDER contains (use-modules ...) clauses, and can be achieved differently anyway.
This commit is contained in:
parent
1e4310f1f2
commit
ac5c1cec86
1 changed files with 1 additions and 2 deletions
|
@ -53,8 +53,7 @@ (define* (trivial-cross-build store name target source inputs native-inputs
|
|||
outputs guile system builder (modules '())
|
||||
search-paths native-search-paths)
|
||||
"Like `trivial-build', but in a cross-compilation context."
|
||||
(build-expression->derivation store name system
|
||||
`(let ((%target ,target)) ,builder)
|
||||
(build-expression->derivation store name system builder
|
||||
(append native-inputs inputs)
|
||||
#:outputs outputs
|
||||
#:modules modules
|
||||
|
|
Loading…
Reference in a new issue