diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2017-12-30 21:09:04 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-01-01 18:09:05 +0100 |
commit | d1a08062c6df82973e7853cebefee6b900caed62 (patch) | |
tree | c19187e0d5b5ee1ee0e04e0ff24334382f651f9b | |
parent | 23de2e1d5f8f7548e6f73085de23d9964774edbf (diff) | |
download | guix-d1a08062c6df82973e7853cebefee6b900caed62.tar.gz |
build-system/glib-or-gtk: Don't generate 'icon-theme.cache'.
* guix/build-system/glib-or-gtk.scm (glib-or-gtk-build): Don't generate 'icon-theme.cache'. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | guix/build-system/glib-or-gtk.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/build-system/glib-or-gtk.scm b/guix/build-system/glib-or-gtk.scm index d585d84f20..621e68e0ab 100644 --- a/guix/build-system/glib-or-gtk.scm +++ b/guix/build-system/glib-or-gtk.scm @@ -110,7 +110,8 @@ (outputs '("out")) (search-paths '()) (configure-flags ''()) - (make-flags ''()) + ;; Disable icon theme cache generation. + (make-flags ''("gtk_update_icon_cache=true")) (out-of-source? #t) (tests? #t) (test-target "check") |