guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/04: locale: Use the native gzip and libc when building locales.


From: guix-commits
Subject: 03/04: locale: Use the native gzip and libc when building locales.
Date: Thu, 14 May 2020 18:02:05 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 4daa7a85b41c10d70893675edf1ac61ebd3bf746
Author: Ludovic Courtès <address@hidden>
AuthorDate: Thu May 14 23:20:14 2020 +0200

    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.
---
 gnu/system/locale.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/system/locale.scm b/gnu/system/locale.scm
index ec1b71e..689d238 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]