diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-04-20 10:26:02 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-04-20 11:13:07 +0200 |
commit | ff32b2dd3edaed03ae48b853f8621d5848fa00ec (patch) | |
tree | 61c04ebad30e2c46319d1f091f8535fcd6ffc585 /gnu | |
parent | 216708832001feb8290b62a6e1df7e9378041861 (diff) | |
download | guix-ff32b2dd3edaed03ae48b853f8621d5848fa00ec.tar.gz guix-ff32b2dd3edaed03ae48b853f8621d5848fa00ec.zip |
gnu: wimlib: Disable static library.
* gnu/packages/backup.scm (wimlib)[arguments]: Add "--disable-static"
to #:configure-flags.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/backup.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index 2259d3949a..a21e93cd23 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -736,7 +736,9 @@ to not fully trusted targets. Borg is a fork of Attic.") ("ntfs-3g" ,ntfs-3g) ("openssl" ,openssl))) (arguments - `(#:configure-flags (list "--enable-test-support"))) + `(#:configure-flags + (list "--disable-static" + "--enable-test-support"))) (home-page "https://wimlib.net/") (synopsis "WIM file manipulation library and utilities") (description "wimlib is a C library and set of command-line utilities for |