diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-08-09 14:08:23 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-08-09 14:09:43 +0300 |
commit | ea77385c4c672aabc866c466ac8132b645510a6b (patch) | |
tree | 8e737117aa6e8c1290344a9d508611fe8d2a89af /gnu | |
parent | 2d5bf32b8aaf3fd60d9412898f269d990d5e3bde (diff) | |
download | guix-ea77385c4c672aabc866c466ac8132b645510a6b.tar guix-ea77385c4c672aabc866c466ac8132b645510a6b.tar.gz |
gnu: viewnior: Don't build icon-theme.cache.
* gnu/packages/image-viewers.scm (viewnior)[arguments]: Add phase to
disable building the icon-theme.cache.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/image-viewers.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm index 644780b5e9..b8a8af9280 100644 --- a/gnu/packages/image-viewers.scm +++ b/gnu/packages/image-viewers.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2013, 2017 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net> ;;; Copyright © 2015, 2016 Alex Kost <alezost@gmail.com> -;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2017 Alex Griffin <a@ajgrf.com> ;;; Copyright © 2017 ng0 <contact.ng0@cryptolab.net> ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> @@ -214,7 +214,13 @@ it and customize it for your needs.") (modify-phases %standard-phases (add-after 'unpack 'autogen (lambda _ - (zero? (system* "sh" "autogen.sh"))))))) + (zero? (system* "sh" "autogen.sh")))) + (add-before 'install 'skip-gtk-update-icon-cache + (lambda _ + ;; Don't create 'icon-theme.cache' + (substitute* (find-files "data" "^Makefile$") + (("gtk-update-icon-cache") (which "true"))) + #t))))) (native-inputs `(("automake" ,automake) ("autoconf" ,autoconf) |