self: Fix unquoting.
This is a follow-up to commit dfc69e4b6d
.
* guix/self.scm (whole-package): Unquote %storedir in the daemon wrapper.
This commit is contained in:
parent
67458e209d
commit
fa86654824
|
@ -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))))))
|
||||
|
|
Loading…
Reference in New Issue