mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 14:47:20 +01:00
gnu: Use 'glibc-utf8-locales-final' in the default patching inputs.
* gnu/packages/commencement.scm (glibc-utf8-locales-final): Make public. * guix/packages.scm (%standard-patch-inputs): Use GLIBC-UTF8-LOCALES-FINAL instead of GLIBC-UTF8-LOCALES.
This commit is contained in:
parent
cf87cc894d
commit
ec3b1c575d
2 changed files with 3 additions and 2 deletions
|
@ -616,7 +616,7 @@ (define-public guile-final
|
|||
(current-source-location)
|
||||
#:guile %bootstrap-guile)))
|
||||
|
||||
(define glibc-utf8-locales-final
|
||||
(define-public glibc-utf8-locales-final
|
||||
;; Now that we have GUILE-FINAL, build the UTF-8 locales. They are needed
|
||||
;; by the build processes afterwards so their 'scm_to_locale_string' works
|
||||
;; with the full range of Unicode codepoints (remember
|
||||
|
|
|
@ -336,7 +336,8 @@ (define (%standard-patch-inputs)
|
|||
("gzip" ,(ref '(gnu packages compression) 'gzip))
|
||||
("lzip" ,(ref '(gnu packages compression) 'lzip))
|
||||
("patch" ,(ref '(gnu packages base) 'patch))
|
||||
("locales" ,(ref '(gnu packages base) 'glibc-utf8-locales)))))
|
||||
("locales" ,(ref '(gnu packages commencement)
|
||||
'glibc-utf8-locales-final)))))
|
||||
|
||||
(define (default-guile)
|
||||
"Return the default Guile package used to run the build code of
|
||||
|
|
Loading…
Reference in a new issue