summary refs log tree commit diff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-12-04 15:57:03 +0100
committerLudovic Courtès <ludo@gnu.org>2015-12-04 23:12:02 +0100
commit2aacd9179ca618fe4f3d568caf2052a47b17cbe6 (patch)
tree7f6afa8938b9de52dacb7482a3252c8eac771290
parent4bddf74ef23a515635e3b5787ade3cb39deaf17d (diff)
downloadguix-2aacd9179ca618fe4f3d568caf2052a47b17cbe6.tar.gz
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'.
-rw-r--r--guix/profiles.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/profiles.scm b/guix/profiles.scm
index 154c8a105f..c222f4115d 100644
--- a/guix/profiles.scm
+++ b/guix/profiles.scm
@@ -669,7 +669,7 @@ creates the GTK+ 'icon-theme.cache' file for each theme."
                  ;; "abiword_48.png".  Ignore these.
                  (when (file-is-directory? dir)
                    (ensure-writable-directory dir)
-                   (system* update-icon-cache "-t" dir))))
+                   (system* update-icon-cache "-t" dir "--quiet"))))
              (scandir destdir (negate (cut member <> '("." ".."))))))))
 
     ;; Don't run the hook when there's nothing to do.