civodul pushed a commit to branch wip-build-systems-gexp in repository guix.
commit 4616327ecddc4270d33e9fb15fd691cf1dd1799a Author: Ludovic Courtès <[email protected]> AuthorDate: Wed Mar 24 22:38:39 2021 +0100 gexp: 'imported+compiled-modules' fully honors #:guile. * guix/gexp.scm (imported+compiled-modules): Pass #:guile to 'imported-modules'. --- guix/gexp.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/guix/gexp.scm b/guix/gexp.scm index 142717e..c826525 100644 --- a/guix/gexp.scm +++ b/guix/gexp.scm @@ -950,6 +950,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)))
