diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-06-22 12:43:18 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-06-22 13:51:11 +0300 |
commit | e1f5517c46373f10af22618eea8484a6d0f613c7 (patch) | |
tree | 3f64dcb90fe82ab625821e1419e106b67906d343 /gnu | |
parent | cb180427d09a5f1144bfd4f51db0bc8c0cec7c6b (diff) | |
download | guix-e1f5517c46373f10af22618eea8484a6d0f613c7.tar.gz |
gnu: orcus: Don't build static library.
* gnu/packages/libreoffice.scm (orcus)[arguments]: Add configure-flag to skip static library.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/libreoffice.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm index dc59209a1b..672a5e3cd7 100644 --- a/gnu/packages/libreoffice.scm +++ b/gnu/packages/libreoffice.scm @@ -125,6 +125,8 @@ their dependencies automatically upon calculation.") (base32 "14gbnqsv5n2fm4sxa17014f440clrzls6p2w2ixk9wipg4950v9s")))) (build-system gnu-build-system) + (arguments + `(#:configure-flags '("--disable-static"))) (native-inputs `(("pkg-config" ,pkg-config))) (inputs |