mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
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:
parent
885fe927e7
commit
9a6cf550bd
1 changed files with 2 additions and 1 deletions
|
@ -575,7 +575,8 @@ (define-public glpk
|
||||||
(inputs
|
(inputs
|
||||||
`(("gmp" ,gmp)))
|
`(("gmp" ,gmp)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("--with-gmp")))
|
`(#:configure-flags '("--with-gmp"
|
||||||
|
"--disable-static")))
|
||||||
(home-page "https://www.gnu.org/software/glpk/")
|
(home-page "https://www.gnu.org/software/glpk/")
|
||||||
(synopsis "GNU Linear Programming Kit, supporting the MathProg language")
|
(synopsis "GNU Linear Programming Kit, supporting the MathProg language")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue