summaryrefslogtreecommitdiff
path: root/guix/store.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-03-09 22:05:29 +0100
committerLudovic Courtès <ludo@gnu.org>2014-03-09 22:10:01 +0100
commitf5768afa333bbc8167ef2e33db44c9bb64bef0be (patch)
treeb44b74586c82b3f4637512228664e44f214e31a1 /guix/store.scm
parent834129e0e2984fa615c8958de3964dabd7f6972c (diff)
build: Change state and log directories to $localstatedir/.../guix.
* daemon.am (libstore_a_CPPFLAGS): Change /nix to /guix. * guix/config.scm.in (%state-directory): Likewise. * guix/store.scm (log-file): Likewise.
Diffstat (limited to 'guix/store.scm')
-rw-r--r--guix/store.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/store.scm b/guix/store.scm
index e92e159ff4..75edb340ae 100644
--- a/guix/store.scm
+++ b/guix/store.scm
@@ -827,7 +827,7 @@ must be an absolute store file name, or a derivation file name."
(cond ((derivation-path? file)
(let* ((base (basename file))
(log (string-append (dirname %state-directory) ; XXX
- "/log/nix/drvs/"
+ "/log/guix/drvs/"
(string-take base 2) "/"
(string-drop base 2)))
(log.bz2 (string-append log ".bz2")))