gnu: cross-base: Remove ‘install-utf8-c-locale’.

* gnu/packages/cross-base.scm (cross-libc*): Remove
‘install-utf8-c-locale’ phase.

Change-Id: I47cf555548335491f06443dd921a457f458801f4
This commit is contained in:
Ludovic Courtès 2023-12-10 00:13:37 +01:00
parent 28dbfdb38f
commit b6d23fa9c2
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -732,7 +732,13 @@ (define cross-binutils
(format #t "adding '~a' to the front of 'PATH'~%"
cross-binutils)
(setenv "PATH" (string-append cross-binutils ":" (getenv "PATH")))))
(setenv "PATH" (string-append cross-binutils ":"
(getenv "PATH")))))
;; This phase would require running 'localedef' built for
;; TARGET, which is impossible by definition.
(delete 'install-utf8-c-locale)
,@(if (target-hurd? target)
'((add-after 'install 'augment-libc.so
(lambda* (#:key outputs #:allow-other-keys)