diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-07-04 23:54:18 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-07-12 22:47:08 +0200 |
commit | 2b4185792d3ec9b43a5c1bb204b6846e5ac0f14a (patch) | |
tree | a9bea1a6445923b78b4d1b917f377409a9b0449e /gnu | |
parent | dd8d1a30468dae1412762e54801592f6b475f88e (diff) | |
download | guix-2b4185792d3ec9b43a5c1bb204b6846e5ac0f14a.tar guix-2b4185792d3ec9b43a5c1bb204b6846e5ac0f14a.tar.gz |
gexp: 'gexp->file' emits code to set '%load-path'.
* guix/gexp.scm (gexp->file): Add #:set-load-path? parameter and honor it.
* gnu/system.scm (operating-system-parameters-file): Pass
#:set-load-path? #f.
* doc/guix.texi (G-Expressions): Adjust accordingly.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/system.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index 96ea153cd0..a49b3f29b3 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -731,7 +731,8 @@ this file is the reconstruction of GRUB menu entries for old configurations." (kernel #$(operating-system-kernel os)) (kernel-arguments #$(operating-system-kernel-arguments os)) - (initrd #$initrd))))) + (initrd #$initrd)) + #:set-load-path? #f))) ;;; |