diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-10-17 22:40:05 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-10-17 23:25:25 +0200 |
commit | 7172116ca5178d3bd1ff7590aca50033c57e8ea1 (patch) | |
tree | 7089099caf296423ca4b36e9634605baf2b6fa3b /guix | |
parent | a52e429f76282080c58444ce2ac82a1968d5f29d (diff) |
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.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/build-system/gnu.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm index 77a128e8e3..c67ec52342 100644 --- a/guix/build-system/gnu.scm +++ b/guix/build-system/gnu.scm @@ -132,6 +132,7 @@ package if GUILE is #f or omitted." (gnu-build #:source ,(if (derivation-path? source) (derivation-path->output-path source) source) + #:system ,system #:outputs %outputs #:inputs %build-inputs #:patches ,patches |