[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/05: gnu: liburcu: Omit static library.
From: |
guix-commits |
Subject: |
01/05: gnu: liburcu: Omit static library. |
Date: |
Wed, 9 Jun 2021 17:41:16 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 702affc6d70dfec926ee5a0badce217a7044f9eb
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Wed Jun 9 22:38:14 2021 +0200
gnu: liburcu: Omit static library.
* gnu/packages/datastructures.scm (liburcu)[arguments]:
Pass "--disable-static" to ./configure.
---
gnu/packages/datastructures.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm
index f10a54d..e89b7d7 100644
--- a/gnu/packages/datastructures.scm
+++ b/gnu/packages/datastructures.scm
@@ -149,6 +149,9 @@ in between these sequences may be different in both content
and length.")
(base32
"0yx69kbx9zd6ayjzvwvglilhdnirq4f1x1sdv33jy8bc9wgc3vsf"))))
(build-system gnu-build-system)
+ (arguments
+ `(#:configure-flags
+ (list "--disable-static")))
(native-inputs
`(("perl" ,perl))) ; for tests
(home-page "https://liburcu.org/";)