diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-03 21:38:24 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-03 21:49:54 +0200 |
commit | fdb4540f7814ca95617d8cb65ccd814135bb0b85 (patch) | |
tree | 7225223e5d5741ee8c41fe30624d38de293b1cc5 /gnu | |
parent | 8018d7d1f854ae124860b2a580659281cfa2f85d (diff) | |
download | guix-fdb4540f7814ca95617d8cb65ccd814135bb0b85.tar.gz |
gnu: knot: Don't build static libraries.
* gnu/packages/dns.scm (knot)[arguments]: Add "--disable-static" to #:configure-flags.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/dns.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index a61e7bfb33..b5fffc35d0 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -846,6 +846,7 @@ Extensions} (DNSSEC).") (string-append "--libdir=" (assoc-ref %outputs "lib") "/lib") "--sysconfdir=/etc" "--localstatedir=/var" + "--disable-static" ; static libraries are built by default "--enable-dnstap" ; let tools read/write capture files "--enable-fastparser" ; disabled by default when .git/ exists "--enable-xdp=auto" ; XXX [=yes] currently means =embedded |