diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2015-12-04 15:57:03 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2015-12-04 23:12:02 +0100 |
| commit | 2aacd9179ca618fe4f3d568caf2052a47b17cbe6 (patch) | |
| tree | 7f6afa8938b9de52dacb7482a3252c8eac771290 | |
| parent | 4bddf74ef23a515635e3b5787ade3cb39deaf17d (diff) | |
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.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/profiles.scm b/guix/profiles.scm index 154c8a105..c222f4115 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. |