diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-07-12 18:00:16 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-07-12 22:47:08 +0200 |
commit | 66a35ceb43f53c3f3e363714c9a6a402f243670d (patch) | |
tree | 965ba0e0c297f124aad06d66af92102f3270c7cc /guix | |
parent | 9c14a487bb3813ec5a555536b6bd1c4160ebb042 (diff) | |
download | gnu-guix-66a35ceb43f53c3f3e363714c9a6a402f243670d.tar gnu-guix-66a35ceb43f53c3f3e363714c9a6a402f243670d.tar.gz |
gexp: Remove more uses of #:modules.
* guix/scripts/system.scm (switch-to-system): Adjust comment.
* tests/gexp.scm ("gexp->derivation #:references-graphs"): Use
'with-imported-modules' instead of #:modules.
* tests/grafts.scm ("graft-derivation, preserve empty directories"):
Likewise.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/scripts/system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm index dd1e534c9b..e2c6b2efee 100644 --- a/guix/scripts/system.scm +++ b/guix/scripts/system.scm @@ -362,7 +362,7 @@ it atomically, and then run OS's activation script." ;; The activation script may modify '%load-path' & co., so protect ;; against that. This is necessary to ensure that ;; 'upgrade-shepherd-services' gets to see the right modules when it - ;; computes derivations with (gexp->derivation #:modules …). + ;; computes derivations with 'gexp->derivation'. (save-load-path-excursion (primitive-load (derivation->output-path script)))) |