summaryrefslogtreecommitdiff
path: root/gnu/installer.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/installer.scm')
-rw-r--r--gnu/installer.scm12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/installer.scm b/gnu/installer.scm
index 3792fc7e350..53af01261eb 100644
--- a/gnu/installer.scm
+++ b/gnu/installer.scm
@@ -146,10 +146,10 @@ been performed at build time."
146 146
147 (let* ((supported-locales #~(supported-locales->locales 147 (let* ((supported-locales #~(supported-locales->locales
148 #+(glibc-supported-locales))) 148 #+(glibc-supported-locales)))
149 (iso-codes #~(string-append #$iso-codes "/share/iso-codes/json/")) 149 (iso-codes #~(string-append #$iso-codes/pinned "/share/iso-codes/json/"))
150 (iso639-3 #~(string-append #$iso-codes "iso_639-3.json")) 150 (iso639-3 #~(string-append #$iso-codes/pinned "iso_639-3.json"))
151 (iso639-5 #~(string-append #$iso-codes "iso_639-5.json")) 151 (iso639-5 #~(string-append #$iso-codes/pinned "iso_639-5.json"))
152 (iso3166 #~(string-append #$iso-codes "iso_3166-1.json")) 152 (iso3166 #~(string-append #$iso-codes/pinned "iso_3166-1.json"))
153 (locales-file (build-compiled-file 153 (locales-file (build-compiled-file
154 locales-name 154 locales-name
155 #~`(quote ,#$supported-locales))) 155 #~`(quote ,#$supported-locales)))
@@ -437,9 +437,9 @@ purposes."
437 ;; (e.g., "French" is always displayed as "français", but 437 ;; (e.g., "French" is always displayed as "français", but
438 ;; "Belgium" could be translated to Dutch, French, or German.) 438 ;; "Belgium" could be translated to Dutch, French, or German.)
439 (bindtextdomain "iso_639-3" ;languages 439 (bindtextdomain "iso_639-3" ;languages
440 #+(file-append iso-codes "/share/locale")) 440 #+(file-append iso-codes/pinned "/share/locale"))
441 (bindtextdomain "iso_3166-1" ;territories 441 (bindtextdomain "iso_3166-1" ;territories
442 #+(file-append iso-codes "/share/locale")) 442 #+(file-append iso-codes/pinned "/share/locale"))
443 443
444 ;; Likewise for XKB keyboard layout names. 444 ;; Likewise for XKB keyboard layout names.
445 (bindtextdomain "xkeyboard-config" 445 (bindtextdomain "xkeyboard-config"