diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-03-17 11:23:46 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-03-18 19:23:46 +0100 |
commit | 23904adbbb3d869e5b2faae805d432bf6e802376 (patch) | |
tree | 6264d237e5c82579cc208eace3e5a657c707ec64 | |
parent | 0a1559cc877fdffcc8f9ee08387a6ff62243930f (diff) | |
download | guix-23904adbbb3d869e5b2faae805d432bf6e802376.tar.gz guix-23904adbbb3d869e5b2faae805d432bf6e802376.zip |
gnu: libgsf: Do not build the static library.
* gnu/packages/gnome.scm (libgsf)[arguments]: New field.
-rw-r--r-- | gnu/packages/gnome.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 13ffa7541d..ff3aa00c44 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2065,6 +2065,8 @@ XML/CSS rendering engine.") (base32 "0bddmlzg719sjhlbzqlhb7chwk93qc7g68m2r9r8xz112jdradpa")))) (build-system gnu-build-system) + (arguments + '(#:configure-flags '("--disable-static"))) (native-inputs `(("pkg-config" ,pkg-config) ("gettext" ,gettext-minimal) |