diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-09-26 12:06:28 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-09-26 23:07:03 +0200 |
commit | 6c5197226d5ff1da19c4d9866fc430592260c615 (patch) | |
tree | ac70164fbb4ecb8f0168251791a9f5ab48f99c71 /gnu | |
parent | 31dcc272760e464df1ae2c33740febb070563825 (diff) |
gnu: lzlib: Don't build static library.
* gnu/packages/compression.scm (lzlib)[arguments]: Pass "--disable-static".
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/compression.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 996c7d1985..083b82bf36 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") |