nckx pushed a commit to branch master
in repository guix.
commit e2fdc27bf179f16a8656d358975f1da558a9447e
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Mon Oct 4 03:30:48 2021 +0200
gnu: haveged: Don't build the static library.
* gnu/packages/linux.scm (haveged)[arguments]: Add "--disable-static" to
the #:configure-flags.
---
gnu/packages/linux.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index f0de541..58ec55e 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -6198,6 +6198,9 @@ cpufreq sub-system is enabled or not.")
(sha256
(base32 "1zb790adsmqq3r26zlaxfrk2hpgxjcjz8l73hn3hli3l3javykvd"))))
(build-system gnu-build-system)
+ (arguments
+ `(#:configure-flags
+ (list "--disable-static")))
(home-page "https://www.issihosts.com/haveged")
(synopsis "Entropy source for the Linux random number generator")
(description