summaryrefslogtreecommitdiff
path: root/guix/build/graft.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-10-17 23:55:28 +0200
committerLudovic Courtès <ludo@gnu.org>2016-10-17 23:59:03 +0200
commitfb3af759ee284fb1cb14c5514ed0432d9cbbfdbf (patch)
tree5d9c52f4f842ad1603421fb630ef861d80817247 /guix/build/graft.scm
parent3d47aa81ba4c19b45ce9a9ff0ece0252777ea8ed (diff)
downloadguix-patches-fb3af759ee284fb1cb14c5514ed0432d9cbbfdbf.tar
guix-patches-fb3af759ee284fb1cb14c5514ed0432d9cbbfdbf.tar.gz
grafts: Remove unnecessary 'umask' call.
This is a followup to d72267863382041b84a9712eea354882be72ef55. * guix/build/graft.scm (rewrite-directory): Remove 'umask' call.
Diffstat (limited to 'guix/build/graft.scm')
-rw-r--r--guix/build/graft.scm5
1 files changed, 0 insertions, 5 deletions
diff --git a/guix/build/graft.scm b/guix/build/graft.scm
index 7025b72fea..16df169ec7 100644
--- a/guix/build/graft.scm
+++ b/guix/build/graft.scm
@@ -307,11 +307,6 @@ file name pairs."
(else
(error "unsupported file type" stat)))))
- ;; XXX: Work around occasional "suspicious ownership or permission" daemon
- ;; errors that arise when we create the top-level /gnu/store/… directory as
- ;; #o777.
- (umask #o022)
-
;; Use 'exit-on-exception' to force an exit upon I/O errors, given that
;; 'n-par-for-each' silently swallows exceptions.
;; See <http://bugs.gnu.org/23581>.