diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-03-31 13:59:37 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-03-31 13:59:37 +0200 |
commit | f73b8e3d0a14961418255d53708bd10271ef5f00 (patch) | |
tree | c62d6604cdbd3a7ebc0af5df3f670fd564de4dbd /gnu | |
parent | e9f1fa39a280cd2272a8a904f51fe478d4717cd0 (diff) | |
download | guix-f73b8e3d0a14961418255d53708bd10271ef5f00.tar guix-f73b8e3d0a14961418255d53708bd10271ef5f00.tar.gz |
install: Create /var/tmp.
Suggested by Mark H Weaver <mhw@netris.org>.
* gnu/build/install.scm (directives): Add /var/tmp.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/build/install.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/build/install.scm b/gnu/build/install.scm index aa901f6971..51895d58ec 100644 --- a/gnu/build/install.scm +++ b/gnu/build/install.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -118,6 +118,7 @@ STORE." (directory "/bin") (directory "/tmp" 0 0 #o1777) ; sticky bit + (directory "/var/tmp" 0 0 #o1777) (directory "/root" 0 0) ; an exception (directory "/home" 0 0))) |