1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-06-06 16:31:34 +02:00

gnu: xfce4-session: Disable (duplicate) Gtk+ icon cache generation.

* gnu/packages/xfce.scm (xfce4-session)[arguments]: Add make-flags to disable
Gtk+ icon cache generation.
This commit is contained in:
Danny Milosavljevic
2017-12-19 10:45:15 +01:00
parent 9a56cf2b5b
commit 68f1869cfc
+4 -1
View File
@@ -492,7 +492,10 @@ your system in categories, so you can quickly find and launch them.")
(build-system gnu-build-system)
(arguments
'(#:configure-flags
(list (string-append "--with-xsession-prefix=" %output))))
(list (string-append "--with-xsession-prefix=" %output))
;; Disable icon cache update.
#:make-flags
'("gtk_update_icon_cache=true")))
(native-inputs
`(("pkg-config" ,pkg-config)
("intltool" ,intltool)))