mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: guile-reader: Build with the C locale.
* gnu/packages/guile.scm (guile-reader)[arguments]: Add #:locale.
This commit is contained in:
parent
1d167b6e37
commit
7d9e8c0857
1 changed files with 7 additions and 1 deletions
|
@ -198,7 +198,13 @@ (define-public guile-reader
|
||||||
(native-inputs `(("pkgconfig" ,pkg-config)
|
(native-inputs `(("pkgconfig" ,pkg-config)
|
||||||
("gperf" ,gperf)))
|
("gperf" ,gperf)))
|
||||||
(inputs `(("guile" ,guile-2.0)))
|
(inputs `(("guile" ,guile-2.0)))
|
||||||
(arguments `(#:configure-flags
|
(arguments `(;; The extract-*.sh scripts really expect to run in the C
|
||||||
|
;; locale. Failing to do that, we end up with a build
|
||||||
|
;; failure while extracting doc. (Fixed in Guile-Reader's
|
||||||
|
;; repo.)
|
||||||
|
#:locale "C"
|
||||||
|
|
||||||
|
#:configure-flags
|
||||||
(let ((out (assoc-ref %outputs "out")))
|
(let ((out (assoc-ref %outputs "out")))
|
||||||
(list (string-append "--with-guilemoduledir="
|
(list (string-append "--with-guilemoduledir="
|
||||||
out "/share/guile/site/2.0")))))
|
out "/share/guile/site/2.0")))))
|
||||||
|
|
Loading…
Reference in a new issue