[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: totem: Do not build static libraries.
From: |
Ludovic Courtès |
Subject: |
01/01: gnu: totem: Do not build static libraries. |
Date: |
Wed, 19 Jul 2017 05:33:22 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit a388c951ddb9fb0d30a6c8ea24fed035247baecb
Author: Ludovic Courtès <address@hidden>
Date: Wed Jul 19 11:09:04 2017 +0200
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(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index c959d54..345dc6a 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