* [PATCH] reset LC_MESSAGES to C too
@ 2013-03-30 8:45 Andrey Borzenkov
2013-03-31 23:59 ` Vladimir 'φ-coder/phcoder' Serbinenko
0 siblings, 1 reply; 2+ messages in thread
From: Andrey Borzenkov @ 2013-03-30 8:45 UTC (permalink / raw)
To: grub-devel
If user locale has non-ASCII translation strings, running grub make
outputs only question marks:
bor@opensuse:~/build/grub> locale
LANG=ru_RU.utf8
LC_CTYPE="ru_RU.utf8"
LC_NUMERIC="ru_RU.utf8"
LC_TIME="ru_RU.utf8"
LC_COLLATE="ru_RU.utf8"
LC_MONETARY="ru_RU.utf8"
LC_MESSAGES="ru_RU.utf8"
LC_PAPER="ru_RU.utf8"
LC_NAME="ru_RU.utf8"
LC_ADDRESS="ru_RU.utf8"
LC_TELEPHONE="ru_RU.utf8"
LC_MEASUREMENT="ru_RU.utf8"
LC_IDENTIFICATION="ru_RU.utf8"
LC_ALL=
make[2]: ????? ?? ???????? `/home/bor/build/grub/docs'
Making all in util/bash-completion.d
make[2]: ???? ? ??????? `/home/bor/build/grub/util/bash-completion.d'
make[2]: ???? `all' ?? ??????? ?????????? ??????.
make[2]: ????? ?? ???????? `/home/bor/build/grub/util/bash-completion.d'
make[1]: ????? ?? ???????? `/home/bor/build/grub'
The reason is, grub Makefile resets LC_CTYPE to C. This makes it
impossible to translate messages into current locale (C at the time
tools are running). Reset LC_MESSAGES to C as well, it is better to
have them in English than do not have them at all.
Problem observed on Linux with glibc 2.17 and 2.15.
Signed-off-by: Andrey Borzenkov <arvidjaar@gmail.com>
---
ChangeLog | 5 +++++
conf/Makefile.common | 1 +
2 files changed, 6 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index 58c2242..cd1f762 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-03-30 Andrey Borzenkov <arvidjaar@gmail.com>
+
+ * conf/Makefile.common: Reset LC_MESSAGES to C too to avoid
+ question marks in messages during build on non-ASCII locale.
+
2013-03-26 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/kern/efi/mm.c (grub_efi_finish_boot_services):
diff --git a/conf/Makefile.common b/conf/Makefile.common
index c185a55..f49581d 100644
--- a/conf/Makefile.common
+++ b/conf/Makefile.common
@@ -4,6 +4,7 @@ CFLAGS_PLATFORM=
export LC_COLLATE := C
export LC_CTYPE := C
+export LC_MESSAGES := C
unexport LC_ALL
# Platform specific options
--
tg: (c643afe..) u/lc_messages (depends on: master)
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] reset LC_MESSAGES to C too
2013-03-30 8:45 [PATCH] reset LC_MESSAGES to C too Andrey Borzenkov
@ 2013-03-31 23:59 ` Vladimir 'φ-coder/phcoder' Serbinenko
0 siblings, 0 replies; 2+ messages in thread
From: Vladimir 'φ-coder/phcoder' Serbinenko @ 2013-03-31 23:59 UTC (permalink / raw)
To: The development of GNU GRUB
[-- Attachment #1: Type: text/plain, Size: 2455 bytes --]
On 30.03.2013 09:45, Andrey Borzenkov wrote:
> If user locale has non-ASCII translation strings, running grub make
> outputs only question marks:
>
> bor@opensuse:~/build/grub> locale
> LANG=ru_RU.utf8
> LC_CTYPE="ru_RU.utf8"
> LC_NUMERIC="ru_RU.utf8"
> LC_TIME="ru_RU.utf8"
> LC_COLLATE="ru_RU.utf8"
> LC_MONETARY="ru_RU.utf8"
> LC_MESSAGES="ru_RU.utf8"
> LC_PAPER="ru_RU.utf8"
> LC_NAME="ru_RU.utf8"
> LC_ADDRESS="ru_RU.utf8"
> LC_TELEPHONE="ru_RU.utf8"
> LC_MEASUREMENT="ru_RU.utf8"
> LC_IDENTIFICATION="ru_RU.utf8"
> LC_ALL=
>
> make[2]: ????? ?? ???????? `/home/bor/build/grub/docs'
> Making all in util/bash-completion.d
> make[2]: ???? ? ??????? `/home/bor/build/grub/util/bash-completion.d'
> make[2]: ???? `all' ?? ??????? ?????????? ??????.
> make[2]: ????? ?? ???????? `/home/bor/build/grub/util/bash-completion.d'
> make[1]: ????? ?? ???????? `/home/bor/build/grub'
>
> The reason is, grub Makefile resets LC_CTYPE to C. This makes it
> impossible to translate messages into current locale (C at the time
> tools are running). Reset LC_MESSAGES to C as well, it is better to
> have them in English than do not have them at all.
This doesn't seem right thing to do. LC_COLLATE was reset to C because
of Estonian since [a-z] in Estonian doesn't include u or t. LC_CTYPE
might break e.g. [[:alpha:]]. But I don't know how to stop it from
interfering with make and gcc messages
>
> Problem observed on Linux with glibc 2.17 and 2.15.
>
> Signed-off-by: Andrey Borzenkov <arvidjaar@gmail.com>
>
> ---
> ChangeLog | 5 +++++
> conf/Makefile.common | 1 +
> 2 files changed, 6 insertions(+)
>
> diff --git a/ChangeLog b/ChangeLog
> index 58c2242..cd1f762 100644
> --- a/ChangeLog
> +++ b/ChangeLog
> @@ -1,3 +1,8 @@
> +2013-03-30 Andrey Borzenkov <arvidjaar@gmail.com>
> +
> + * conf/Makefile.common: Reset LC_MESSAGES to C too to avoid
> + question marks in messages during build on non-ASCII locale.
> +
> 2013-03-26 Vladimir Serbinenko <phcoder@gmail.com>
>
> * grub-core/kern/efi/mm.c (grub_efi_finish_boot_services):
> diff --git a/conf/Makefile.common b/conf/Makefile.common
> index c185a55..f49581d 100644
> --- a/conf/Makefile.common
> +++ b/conf/Makefile.common
> @@ -4,6 +4,7 @@ CFLAGS_PLATFORM=
>
> export LC_COLLATE := C
> export LC_CTYPE := C
> +export LC_MESSAGES := C
> unexport LC_ALL
>
> # Platform specific options
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 294 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-04-01 0:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-30 8:45 [PATCH] reset LC_MESSAGES to C too Andrey Borzenkov
2013-03-31 23:59 ` Vladimir 'φ-coder/phcoder' Serbinenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).