diff options
author | 宋文武 <iyzsong@gmail.com> | 2016-08-22 22:32:15 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2016-08-23 19:47:00 +0800 |
commit | d25c1836c836b3a63c516458aeea5bdcd25ecab3 (patch) | |
tree | a4563db9280df405a70099a853bdc40cb0a86401 /gnu | |
parent | 9a0ebe18edba2826277f711b5fa34cd5943cb97c (diff) | |
download | guix-d25c1836c836b3a63c516458aeea5bdcd25ecab3.tar.gz |
gnu: dconf-editor: Don't install 'icon-theme.cache'.
* gnu/packages/gnome.scm (dconf-editor)[arguments]: Add 'skip-gtk-update-icon-cache' phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 9669cf35e3..63d0f1258e 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5011,6 +5011,15 @@ beautifying border effects.") (base32 "0yf553bd9l030shhs0jkl5gvkzkfxbxxm56xv0l0nmbplaci8wm8")))) (build-system glib-or-gtk-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-before 'install 'skip-gtk-update-icon-cache + (lambda _ + ;; Don't create 'icon-theme.cache'. + (substitute* "editor/Makefile" + (("gtk-update-icon-cache") "true")) + #t))))) (native-inputs `(("glib:bin" ,glib "bin") ; for glib-compile-schemas, gio-2.0. ("intltool" ,intltool) |