gnu: knot: Don't build static libraries.

* gnu/packages/dns.scm (knot)[arguments]: Add "--disable-static"
to #:configure-flags.
This commit is contained in:
Tobias Geerinckx-Rice 2021-10-03 21:38:24 +02:00
parent 8018d7d1f8
commit fdb4540f78
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -846,6 +846,7 @@ (define-public knot
(string-append "--libdir=" (assoc-ref %outputs "lib") "/lib") (string-append "--libdir=" (assoc-ref %outputs "lib") "/lib")
"--sysconfdir=/etc" "--sysconfdir=/etc"
"--localstatedir=/var" "--localstatedir=/var"
"--disable-static" ; static libraries are built by default
"--enable-dnstap" ; let tools read/write capture files "--enable-dnstap" ; let tools read/write capture files
"--enable-fastparser" ; disabled by default when .git/ exists "--enable-fastparser" ; disabled by default when .git/ exists
"--enable-xdp=auto" ; XXX [=yes] currently means =embedded "--enable-xdp=auto" ; XXX [=yes] currently means =embedded