diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-10-09 11:49:26 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-10-09 18:54:12 +0200 |
commit | 88d9eccc116f29000df6062fdabe2b1377da158b (patch) | |
tree | bf4e8c5f6387233ba2e10fd0ab0a5ed535941a6f | |
parent | e54aec7b8e5ef1aa53df043e3c0b06f25d2936a4 (diff) | |
download | gnu-guix-88d9eccc116f29000df6062fdabe2b1377da158b.tar gnu-guix-88d9eccc116f29000df6062fdabe2b1377da158b.tar.gz |
profiles: Make Geiser happy.
* guix/profiles.scm (manual-database)[config.scm]: Use ungexp/quote
trick to placate Geiser, which otherwise thinks it's in (guix config).
-rw-r--r-- | guix/profiles.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/profiles.scm b/guix/profiles.scm index 669ebe04e5..de3a044646 100644 --- a/guix/profiles.scm +++ b/guix/profiles.scm @@ -1249,7 +1249,7 @@ the entries in MANIFEST." (define config.scm (scheme-file "config.scm" #~(begin - (define-module (guix config) + (define-module #$'(guix config) ;placate Geiser #:export (%libz)) (define %libz |