From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: bug#29076: [PATCH core-updates] build-system/glib-or-gtk: Don't generate 'icon-theme.cache'. Date: Sat, 30 Dec 2017 18:45:25 +0100 Message-ID: <20171230174525.10957-1-dannym@scratchpost.org> References: <20171227111435.67d997ed@scratchpost.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56797) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eVLCv-0007uI-1U for bug-guix@gnu.org; Sat, 30 Dec 2017 12:46:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eVLCr-0004Ik-WE for bug-guix@gnu.org; Sat, 30 Dec 2017 12:46:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:49403) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eVLCr-0004Hx-TT for bug-guix@gnu.org; Sat, 30 Dec 2017 12:46:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eVLCr-0002LL-JT for bug-guix@gnu.org; Sat, 30 Dec 2017 12:46:01 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20171227111435.67d997ed@scratchpost.org> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 29076@debbugs.gnu.org * guix/build-system/glib-or-gtk.scm (glib-or-gtk-build): Don't generate 'icon-theme.cache'. --- guix/build-system/glib-or-gtk.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/guix/build-system/glib-or-gtk.scm b/guix/build-system/glib-or-gtk.scm index d585d84f2..fb241ec94 100644 --- a/guix/build-system/glib-or-gtk.scm +++ b/guix/build-system/glib-or-gtk.scm @@ -159,7 +159,9 @@ #:glib-or-gtk-wrap-excluded-outputs ,glib-or-gtk-wrap-excluded-outputs #:configure-flags ,configure-flags - #:make-flags ,make-flags + ;; Disable icon theme cache generation. + #:make-flags ,(cons "gtk_update_icon_cache=true" + make-flags) #:out-of-source? ,out-of-source? #:tests? ,tests? #:test-target ,test-target