mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: guile-readline: Allow builds without GMP.
Fixes <https://bugs.gnu.org/48488>. Reported by Jack Hill <jackhill@jackhill.us>. * gnu/packages/guile.scm (make-guile-readline)[arguments]: Pass '--enable-mini-gmp'.
This commit is contained in:
parent
20c122a4b0
commit
7046a8fff7
1 changed files with 2 additions and 1 deletions
|
@ -394,7 +394,8 @@ (define* (make-guile-readline guile #:optional (name "guile-readline"))
|
|||
(source (package-source guile))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:configure-flags '("--disable-silent-rules")
|
||||
'(#:configure-flags '("--disable-silent-rules"
|
||||
"--enable-mini-gmp") ;for Guile >= 3.0.6
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-before 'build 'chdir
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue