me
/
guix
Archived
1
0
Fork 0

profiles: Silence GTK+ icon cache creation.

Suggested by Ricardo Wurmus <rekado@elephly.net>.

* guix/profiles.scm (gtk-icon-themes)[build]: Pass --quiet to
'gtk-update-icon-cache'.
master
Ludovic Courtès 2015-12-04 15:57:03 +01:00
parent 4bddf74ef2
commit 2aacd9179c
1 changed files with 1 additions and 1 deletions

View File

@ -669,7 +669,7 @@ creates the GTK+ 'icon-theme.cache' file for each theme."
;; "abiword_48.png". Ignore these. ;; "abiword_48.png". Ignore these.
(when (file-is-directory? dir) (when (file-is-directory? dir)
(ensure-writable-directory dir) (ensure-writable-directory dir)
(system* update-icon-cache "-t" dir)))) (system* update-icon-cache "-t" dir "--quiet"))))
(scandir destdir (negate (cut member <> '("." "..")))))))) (scandir destdir (negate (cut member <> '("." ".."))))))))
;; Don't run the hook when there's nothing to do. ;; Don't run the hook when there's nothing to do.