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
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5

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)))