diff options
author | Jack Hill <jackhill@jackhill.us> | 2019-06-03 14:42:16 -0400 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-06-05 11:48:55 +0200 |
commit | 579d17b70dac067f8194ede46513400b91ac136a (patch) | |
tree | f6a0f2f39faa7bf02298bf223bbba96e656e8071 /etc | |
parent | 9b99b349ec9bbe02434e7018a218d5d3b193ab26 (diff) | |
download | patches-579d17b70dac067f8194ede46513400b91ac136a.tar patches-579d17b70dac067f8194ede46513400b91ac136a.tar.gz |
etc: guix-daemon.service.in: Fix GUIX_LOCPATH quoting.
Fixes <https://bugs.gnu.org/36074>.
* etc/guix-daemon.service.in: Move the GUIX_LOCPATH environment variable name
inside the quotes.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/guix-daemon.service.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/guix-daemon.service.in b/etc/guix-daemon.service.in index 7b20a91931..407cdd199c 100644 --- a/etc/guix-daemon.service.in +++ b/etc/guix-daemon.service.in @@ -7,7 +7,7 @@ Description=Build daemon for GNU Guix [Service] ExecStart=@localstatedir@/guix/profiles/per-user/root/current-guix/bin/guix-daemon --build-users-group=guixbuild -Environment=GUIX_LOCPATH='@localstatedir@/guix/profiles/per-user/root/guix-profile/lib/locale' LC_ALL=en_US.utf8 +Environment='GUIX_LOCPATH=@localstatedir@/guix/profiles/per-user/root/guix-profile/lib/locale' LC_ALL=en_US.utf8 RemainAfterExit=yes StandardOutput=syslog StandardError=syslog |