build: guile-build-system: Remove "locales" implicit input.

This error was introduced by the removal of "locales" from the
standard-packages in commit de9d6d12 (gnu: commencement: Remove
‘glibc-utf8-locales’ from ‘%final-inputs’."), which is made because glibc now
embeds a C.UTF8 locale.

* guix/build-system/guile.scm (lower): Remove the "locales" implicit input.

Change-Id: Id28a95757309aba6a6be89b2c8a6e08847e35f58
This commit is contained in:
Maxim Cournoyer 2024-01-04 09:38:19 -05:00 committed by Ludovic Courtès
parent 9be6c34ce7
commit 2301a580e5
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -64,7 +64,7 @@ (define private-keywords
,@native-inputs
,@(if implicit-inputs?
(map (cute assoc <> (standard-packages))
'("tar" "gzip" "bzip2" "xz" "locales"))
'("tar" "gzip" "bzip2" "xz"))
'())))
(outputs outputs)
(build (if target guile-cross-build guile-build))