locale: Use the native gzip and libc when building locales.
authorLudovic Courtès <ludo@gnu.org>
Thu, 14 May 2020 21:20:14 +0000 (23:20 +0200)
committerLudovic Courtès <ludo@gnu.org>
Thu, 14 May 2020 22:01:39 +0000 (00:01 +0200)
This fixes system cross-compilation.

* gnu/system/locale.scm (single-locale-directory)[build]: Use the native
GZIP and LIBC.

gnu/system/locale.scm

index ec1b71e..689d238 100644 (file)
@@ -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)