diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-04 03:30:48 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-04 13:31:37 +0200 |
commit | e2fdc27bf179f16a8656d358975f1da558a9447e (patch) | |
tree | e80ecde2bb8ef5e55d64ec2807a06719f74548d0 | |
parent | 9eeff70251b47b57ba60b4e37fe753e6d3d1288e (diff) |
gnu: haveged: Don't build the static library.
* gnu/packages/linux.scm (haveged)[arguments]: Add "--disable-static" to
the #:configure-flags.
-rw-r--r-- | gnu/packages/linux.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index f0de5419c5..58ec55ebd3 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 |