diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-22 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-22 02:00:10 +0200 |
commit | 23c281424ccb7909478a21ac9092893c846c614a (patch) | |
tree | 227acfff335b9734b195ab3147bf4f7a79ad501d /gnu | |
parent | c9038edc4fb74b7af5d320ff915603807e901d34 (diff) |
gnu: libite: Don't build static library.
* gnu/packages/linux.scm (libite)[arguments]: Add "--disable-static"
to #:configure-flags.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index cfd8909b24..8469f4380d 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4932,7 +4932,9 @@ capabilities of the Linux kernel.") (base32 "0i27ppb557kdc1hm7nf0f5r7sxvqma31pr57h79whl6qcp28gy4a")))) (build-system gnu-build-system) (arguments - `(#:phases + `(#:configure-flags + (list "--disable-static") + #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-tests (lambda* (#:key inputs #:allow-other-keys) |