summaryrefslogtreecommitdiff
path: root/guix/self.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2019-05-28 23:21:27 +0200
committerRicardo Wurmus <rekado@elephly.net>2019-05-28 23:21:27 +0200
commitfa866548244e3a8ad65a19c40cb0d6f2c669cc6b (patch)
tree2781ec24e04dcf9130c658e89efa6a0bb634ded2 /guix/self.scm
parent67458e209d34f4782616c46c096287297a4274df (diff)
downloadpatches-fa866548244e3a8ad65a19c40cb0d6f2c669cc6b.tar
patches-fa866548244e3a8ad65a19c40cb0d6f2c669cc6b.tar.gz
self: Fix unquoting.
This is a follow-up to commit dfc69e4b6d4bbc41a4d37b3cc6ea12adb34aaafa. * guix/self.scm (whole-package): Unquote %storedir in the daemon wrapper.
Diffstat (limited to 'guix/self.scm')
-rw-r--r--guix/self.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/self.scm b/guix/self.scm
index b7d8f4ee91..69e2381a8c 100644
--- a/guix/self.scm
+++ b/guix/self.scm
@@ -617,7 +617,7 @@ Info manual."
(setenv "GUIX_CONFIGURATION_DIRECTORY"
#$(string-append %sysconfdir "/guix")))
(unless (getenv "NIX_STORE_DIR")
- (setenv "NIX_STORE_DIR" %storedir))
+ (setenv "NIX_STORE_DIR" #$%storedir))
(apply execl #$(file-append daemon "/bin/guix-daemon")
"guix-daemon" (cdr (command-line))))))