summaryrefslogtreecommitdiff
path: root/gnu/packages/maths.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2020-12-17 21:46:40 +0200
committerEfraim Flashner <efraim@flashner.co.il>2020-12-17 22:26:30 +0200
commit9a6cf550bd2d22107bd60e6f8e85b3064403956c (patch)
tree3e81c5e109de7023d2025c44dd78a270b89e6465 /gnu/packages/maths.scm
parent885fe927e7648e6a7349acff163c0015bc3ab732 (diff)
downloadguix-patches-9a6cf550bd2d22107bd60e6f8e85b3064403956c.tar
guix-patches-9a6cf550bd2d22107bd60e6f8e85b3064403956c.tar.gz
gnu: glpk: Don't build static library.
* gnu/packages/maths.scm (glpk)[arguments]: Add configure-flag to skip static library.
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r--gnu/packages/maths.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 794111afc4..5dbd8b8b51 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -575,7 +575,8 @@ It can utilize SIMD instructions that are available on modern processors.")
(inputs
`(("gmp" ,gmp)))
(arguments
- `(#:configure-flags '("--with-gmp")))
+ `(#:configure-flags '("--with-gmp"
+ "--disable-static")))
(home-page "https://www.gnu.org/software/glpk/")
(synopsis "GNU Linear Programming Kit, supporting the MathProg language")
(description