gnu: glpk: Don't build static library.

* gnu/packages/maths.scm (glpk)[arguments]: Add configure-flag to skip
static library.
This commit is contained in:
Efraim Flashner 2020-12-17 21:46:40 +02:00
parent 885fe927e7
commit 9a6cf550bd
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -575,7 +575,8 @@ (define-public glpk
(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