summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-05-14 23:20:14 +0200
committerLudovic Courtès <ludo@gnu.org>2020-05-15 00:01:39 +0200
commit4daa7a85b41c10d70893675edf1ac61ebd3bf746 (patch)
tree4095db326b1b83260af76524c105899aa9365288 /gnu/system
parent2050734717de63d2b19daf08d44ec737122b8c4e (diff)
downloadguix-patches-4daa7a85b41c10d70893675edf1ac61ebd3bf746.tar
guix-patches-4daa7a85b41c10d70893675edf1ac61ebd3bf746.tar.gz
locale: Use the native gzip and libc when building locales.
This fixes system cross-compilation. * gnu/system/locale.scm (single-locale-directory)[build]: Use the native GZIP and LIBC.
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/locale.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/locale.scm b/gnu/system/locale.scm
index ec1b71e061..689d238d1a 100644
--- a/gnu/system/locale.scm
+++ b/gnu/system/locale.scm
@@ -106,7 +106,7 @@ of LIBC."
;; 'localedef' executes 'gzip' to access compressed locale sources.
(setenv "PATH"
- (string-append #$gzip "/bin:" #$libc "/bin"))
+ (string-append #+gzip "/bin:" #+libc "/bin"))
(setvbuf (current-output-port) 'line)
(setvbuf (current-error-port) 'line)