From a388c951ddb9fb0d30a6c8ea24fed035247baecb Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 19 Jul 2017 11:09:04 +0200 Subject: gnu: totem: Do not build static libraries. * gnu/packages/gnome.scm (totem)[arguments]: Pass "--disable-static". This reduces the size of Totem from 11 MiB to 9 MiB. --- gnu/packages/gnome.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'gnu/packages') diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index c959d54da6c..345dc6a7480 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3495,7 +3495,11 @@ for application developers.") (arguments `(;; Disable automatic GStreamer plugin installation via PackageKit and ;; all that. - #:configure-flags '("--disable-easy-codec-installation") + #:configure-flags '("--disable-easy-codec-installation" + + ;; Do not build .a files for the plugins, it's + ;; completely useless. This saves 2 MiB. + "--disable-static") #:phases (modify-phases %standard-phases -- cgit v1.2.3