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.
This commit is contained in:
parent
644e5f17df
commit
a388c951dd
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue