diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-01-04 09:38:19 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:19 +0200 |
commit | 2301a580e546abdc0beec65aeb250659d7b0ba5d (patch) | |
tree | faafeebb30b2f013c308cf3d01c9eb6b20424457 | |
parent | 9be6c34ce737a709ea2058f1af3d4f45654dbc56 (diff) | |
download | guix-2301a580e546abdc0beec65aeb250659d7b0ba5d.tar.gz guix-2301a580e546abdc0beec65aeb250659d7b0ba5d.zip |
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
-rw-r--r-- | guix/build-system/guile.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build-system/guile.scm b/guix/build-system/guile.scm index 0974fb5042..ee59bb15f2 100644 --- a/guix/build-system/guile.scm +++ b/guix/build-system/guile.scm @@ -64,7 +64,7 @@ ,@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)) |