diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-03-24 22:38:39 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-03-29 16:47:22 +0200 |
commit | 3a5fbced6fa1b1dd5bad45b6fccceb84f0470c8d (patch) | |
tree | b814463674aec7804030996848ed96fc0898df20 /guix/gexp.scm | |
parent | 13f7f06c498aa8cd9704ec78cd514c309042182d (diff) |
gexp: 'imported+compiled-modules' fully honors #:guile.
* guix/gexp.scm (imported+compiled-modules): Pass #:guile to
'imported-modules'.
Diffstat (limited to 'guix/gexp.scm')
-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 b9a2483773..b01c78b267 100644 --- a/guix/gexp.scm +++ b/guix/gexp.scm @@ -936,6 +936,7 @@ second element is the derivation to compile them." (mcached equal? (mlet %store-monad ((modules (if (pair? modules) (imported-modules modules + #:guile guile #:system system #:module-path module-path) (return #f))) |