diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-07-24 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-07-24 02:00:01 +0200 |
commit | 5f4cd5243c8a409f63a443d093b5a554ad7d3c92 (patch) | |
tree | 958469302b3c79363bccb23db15cebb1fc8e59e7 /gnu/packages | |
parent | 6efe29d2e7c17c7609f56a0bceaa491d01ac3e96 (diff) | |
download | guix-5f4cd5243c8a409f63a443d093b5a554ad7d3c92.tar.gz guix-5f4cd5243c8a409f63a443d093b5a554ad7d3c92.zip |
gnu: libconfini: Omit static library.
* gnu/packages/cpp.scm (libconfini)[arguments]: Add "--disable-static"
to #:configure-flags.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cpp.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 481671f443..8330f0d157 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -1486,7 +1486,9 @@ output randomness while retaining speed, simplicity, and conciseness.") "002lmf1b2phmc6s348k00yx5shrcc7psn3pgqvraxvr6n8g747jx")))) (build-system gnu-build-system) (arguments - `(#:phases + `(#:configure-flags + (list "--disable-static") + #:phases (modify-phases %standard-phases (replace 'bootstrap (lambda _ (invoke "sh" "bootstrap" "--noconfigure")))))) |