diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2017-12-23 19:27:09 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2017-12-23 19:27:09 +0000 |
commit | f537f6c4bcb2aae6731a005cb249bd3373804066 (patch) | |
tree | 63d53d563b19b58e4f02ff4ba880dc2c7cc4c359 | |
parent | cfe9a87896dae66631e3e877088333fc2eaa6849 (diff) | |
download | drakiso-f537f6c4bcb2aae6731a005cb249bd3373804066.tar drakiso-f537f6c4bcb2aae6731a005cb249bd3373804066.tar.gz drakiso-f537f6c4bcb2aae6731a005cb249bd3373804066.tar.bz2 drakiso-f537f6c4bcb2aae6731a005cb249bd3373804066.tar.xz drakiso-f537f6c4bcb2aae6731a005cb249bd3373804066.zip |
Force UTF-8 locale when building and compiling message translations.
-rw-r--r-- | bootloader/po/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bootloader/po/Makefile b/bootloader/po/Makefile index 297110e..81c19af 100644 --- a/bootloader/po/Makefile +++ b/bootloader/po/Makefile @@ -4,13 +4,13 @@ MO_FILES = $(addsuffix .mo, $(basename $(PO_FILES))) all: $(MO_FILES) %.mo: %.po %-grub.po %-kbd.po - msgfmt -o $@ $^ + LC_ALL=UTF-8 msgfmt -o $@ $^ %-grub.po: ../make-grub-po - ../make-grub-po $(basename $*) + LC_ALL=UTF-8 ../make-grub-po $(basename $*) %-kbd.po: ../make-kbd-po ../kbd-names.txt - ../make-kbd-po $(basename $*) + LC_ALL=UTF-8 ../make-kbd-po $(basename $*) clean: rm -f *-grub.po *-kbd.po *.mo |