diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-31 17:57:38 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-02-03 15:29:16 +0100 |
commit | effd1422af81b210682a22f34858c5c69f7a1ba7 (patch) | |
tree | c0f736512320303a2bac3144773a1c82090cf71b /gnu/packages/libbsd.scm | |
parent | fef24361889103057a0c999b2303e22218c04e63 (diff) | |
download | patches-effd1422af81b210682a22f34858c5c69f7a1ba7.tar patches-effd1422af81b210682a22f34858c5c69f7a1ba7.tar.gz |
gnu: libbsd: Do not build the static library.
* gnu/packages/libbsd.scm (libbsd)[arguments]: New field.
Diffstat (limited to 'gnu/packages/libbsd.scm')
-rw-r--r-- | gnu/packages/libbsd.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/libbsd.scm b/gnu/packages/libbsd.scm index 9d0dff10f1..16a7e8fd89 100644 --- a/gnu/packages/libbsd.scm +++ b/gnu/packages/libbsd.scm @@ -34,6 +34,8 @@ (base32 "11x8q45jvjvf2dvgclds64mscyg10lva33qinf2hwgc84v3svf1l")))) (build-system gnu-build-system) + (arguments + '(#:configure-flags '("--disable-static"))) (synopsis "Utility functions from BSD systems") (description "This library provides useful functions commonly found on BSD systems, and lacking on others like GNU systems, thus making it easier to port |