From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: bug#29076: [PATCH core-updates v2] build-system/glib-or-gtk: Don't generate 'icon-theme.cache'. Date: Wed, 27 Dec 2017 12:12:40 +0100 Message-ID: <20171227111240.777-1-dannym@scratchpost.org> References: <87zi6f5901.fsf@gnu.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59432) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eU9es-0003Ci-V4 for bug-guix@gnu.org; Wed, 27 Dec 2017 06:14:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eU9es-0004FI-3D for bug-guix@gnu.org; Wed, 27 Dec 2017 06:14:02 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:44479) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eU9es-0004Ek-0C for bug-guix@gnu.org; Wed, 27 Dec 2017 06:14:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eU9er-0006mk-IU for bug-guix@gnu.org; Wed, 27 Dec 2017 06:14:01 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87zi6f5901.fsf@gnu.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, ludo@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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guix/build-system/glib-or-gtk.scm b/guix/build-system/glib-or-gtk.scm index d585d84f2..621e68e0a 100644 --- a/guix/build-system/glib-or-gtk.scm +++ b/guix/build-system/glib-or-gtk.scm @@ -110,7 +110,8 @@ (outputs '("out")) (search-paths '()) (configure-flags ''()) - (make-flags ''()) + ;; Disable icon theme cache generation. + (make-flags ''("gtk_update_icon_cache=true")) (out-of-source? #t) (tests? #t) (test-target "check")