[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: lzlib: Don't build static library.
From: |
guix-commits |
Subject: |
02/03: gnu: lzlib: Don't build static library. |
Date: |
Sat, 26 Sep 2020 17:18:07 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 6c5197226d5ff1da19c4d9866fc430592260c615
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sat Sep 26 12:06:28 2020 +0200
gnu: lzlib: Don't build static library.
* gnu/packages/compression.scm (lzlib)[arguments]: Pass "--disable-static".
---
gnu/packages/compression.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 996c7d1..083b82b 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1764,6 +1764,7 @@ Clzip is intended to be fully compatible with the regular
lzip package.")
(arguments
`(#:configure-flags
(list (string-append "CC=" ,(cc-for-target))
+ "--disable-static"
"--enable-shared"))) ; only static (.a) is built by default
(home-page "https://www.nongnu.org/lzip/lzlib.html")
(synopsis "Lzip data compression C library")