diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-24 04:29:39 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-24 12:15:33 +0100 |
commit | eddf3db5c95cd33f47765f8e10a40bf23f0b1fe4 (patch) | |
tree | 6179085159d93389fce62ca8a93c101cc565411f | |
parent | 90695b64313bc54bf918d9fa9763f41b3b7a1101 (diff) | |
download | guix-eddf3db5c95cd33f47765f8e10a40bf23f0b1fe4.tar.gz |
gnu: s6-linux-init: Omit static library.
* gnu/packages/skarnet.scm (s6-linux-init)[arguments]: Add ‘--disable-static’ to #:configure-flags.
-rw-r--r-- | gnu/packages/skarnet.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/skarnet.scm b/gnu/packages/skarnet.scm index 3aef62f169..1fd7d91eb9 100644 --- a/gnu/packages/skarnet.scm +++ b/gnu/packages/skarnet.scm @@ -312,6 +312,7 @@ systems and other constrained environments, but they work everywhere."))) (arguments '(#:configure-flags (list + "--disable-static" (string-append "--with-lib=" (assoc-ref %build-inputs "skalibs") "/lib/skalibs") |