aboutsummary
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/libunwind.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/libunwind.scm')
0 files changed, 0 insertions, 0 deletions
"." codeset))) "Compute locale data for LOCALE and CODESET--e.g., \"en_US\" and \"UTF-8\"--with LOCALEDEF, and store it in DIRECTORY under NAME." (format #t "building locale '~a'...~%" name) (invoke localedef "--no-archive" "--prefix" directory "-i" locale "-f" codeset (string-append directory "/" name))) (define (locale->name+codeset locale) "Split a locale name such as \"aa_ER@saaho.UTF-8\" into two values: the language/territory/modifier part, and the codeset." (match (string-rindex locale #\.) (#f (values locale #f)) (dot (values (string-take locale dot) (string-drop locale (+ dot 1))))))