diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-14 18:14:01 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-01-14 18:31:36 +0100 |
commit | f0136e4d18fe604e4e2f53c3b30f94ab00c3bf84 (patch) | |
tree | 09dea89cde751300502d22f6d96798c1edf0b9d7 /gnu/packages/libevent.scm | |
parent | dc73ea4195f9b368a6ed6917b91d70e1b88e7200 (diff) | |
download | guix-f0136e4d18fe604e4e2f53c3b30f94ab00c3bf84.tar.gz |
gnu: libuv: Do not build the static library.
* gnu/packages/libevent.scm (libuv)[arguments]: Add #:configure-flags.
Diffstat (limited to 'gnu/packages/libevent.scm')
-rw-r--r-- | gnu/packages/libevent.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/libevent.scm b/gnu/packages/libevent.scm index bc2df4e744..72bbddea00 100644 --- a/gnu/packages/libevent.scm +++ b/gnu/packages/libevent.scm @@ -111,7 +111,8 @@ limited support for fork events.") "1kwgl7j9snmjicrszhynfyp4njckqaw6l90y71a0b0alp2m8asbn")))) (build-system gnu-build-system) (arguments - '(;; XXX: Some tests want /dev/tty, attempt to make connections, etc. + '(#:configure-flags '("--disable-static") + ;; XXX: Some tests want /dev/tty, attempt to make connections, etc. #:tests? #f)) (native-inputs `(("autoconf" ,autoconf-wrapper) ("automake" ,automake) |