diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-03-05 09:29:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-03-05 12:49:28 +0100 |
commit | 6de3ef0d5e74e18e82292617c424cf30f932e699 (patch) | |
tree | 3efa51ab3277ac806e295e6d24c99b5bec04593d /guix | |
parent | c19304d2d20ded7db1eb5c898ca9528deda1c02c (diff) |
gexp: Honor #:target in 'compiled-modules'.
* guix/gexp.scm (compiled-modules): Pass #:target to 'gexp->derivation'.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/gexp.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/gexp.scm b/guix/gexp.scm index b72b8f4061..b9a2483773 100644 --- a/guix/gexp.scm +++ b/guix/gexp.scm @@ -1708,6 +1708,7 @@ TARGET, a GNU triplet." ;; TODO: Pass MODULES as an environment variable. (gexp->derivation name build #:system system + #:target target #:guile-for-build guile #:local-build? #t #:env-vars |