summaryrefslogtreecommitdiff
path: root/guix/utils.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-06-22 23:39:57 +0200
committerLudovic Courtès <ludo@gnu.org>2016-06-22 23:39:57 +0200
commit3583b27b2cb42ac8c88e7f53df2e3101d5a82ede (patch)
tree84aec169046d312a492d3f4931b769754190e4e8 /guix/utils.scm
parent0a2f2848d5f39e008397215e697e14335dcce7c1 (diff)
downloadgnu-guix-3583b27b2cb42ac8c88e7f53df2e3101d5a82ede.tar
gnu-guix-3583b27b2cb42ac8c88e7f53df2e3101d5a82ede.tar.gz
utils: 'cache-directory' honors 'XDG_CACHE_HOME'.
* guix/utils.scm (cache-directory): Honor 'XDG_CACHE_HOME', not 'XDG_CONFIG_HOME'.
Diffstat (limited to 'guix/utils.scm')
-rw-r--r--guix/utils.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/utils.scm b/guix/utils.scm
index 69f4e78a85..6bcee17776 100644
--- a/guix/utils.scm
+++ b/guix/utils.scm
@@ -637,7 +637,7 @@ output port, and PROC's result is returned."
(define (cache-directory)
"Return the cache directory for Guix, by default ~/.cache/guix."
- (or (getenv "XDG_CONFIG_HOME")
+ (or (getenv "XDG_CACHE_HOME")
(and=> (or (getenv "HOME")
(passwd:dir (getpwuid (getuid))))
(cut string-append <> "/.cache/guix"))))