build-system/gnu: Pass the system type to the builder.
* guix/build-system/gnu.scm (gnu-build)[builder]: Pass SYSTEM to `gnu-build' as a keyword argument.
This commit is contained in:
parent
a52e429f76
commit
7172116ca5
|
@ -132,6 +132,7 @@ package if GUILE is #f or omitted."
|
||||||
(gnu-build #:source ,(if (derivation-path? source)
|
(gnu-build #:source ,(if (derivation-path? source)
|
||||||
(derivation-path->output-path source)
|
(derivation-path->output-path source)
|
||||||
source)
|
source)
|
||||||
|
#:system ,system
|
||||||
#:outputs %outputs
|
#:outputs %outputs
|
||||||
#:inputs %build-inputs
|
#:inputs %build-inputs
|
||||||
#:patches ,patches
|
#:patches ,patches
|
||||||
|
|
Loading…
Reference in New Issue