* autogen.sh: Ensure that collate and ctype locale is C.
* conf/Makefile.common: Likeiwise. Also-By: Colin Watson <cjwatson@ubuntu.com>
This commit is contained in:
parent
cb180fdf06
commit
18dd6b472d
3 changed files with 14 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
2011-04-08 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
|
* autogen.sh: Ensure that collate and ctype locale is C.
|
||||||
|
* conf/Makefile.common: Likeiwise.
|
||||||
|
|
||||||
2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
|
2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/normal/menu.c: Add missing include.
|
* grub-core/normal/menu.c: Add missing include.
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
export LC_CTYPE=C
|
||||||
|
export LC_COLLATE=C
|
||||||
|
unset LC_ALL
|
||||||
|
|
||||||
autogen --version >/dev/null || exit 1
|
autogen --version >/dev/null || exit 1
|
||||||
|
|
||||||
echo "Importing unicode..."
|
echo "Importing unicode..."
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
CFLAGS_PLATFORM=
|
CFLAGS_PLATFORM=
|
||||||
|
|
||||||
|
export LC_COLLATE := C
|
||||||
|
export LC_CTYPE := C
|
||||||
|
unexport LC_ALL
|
||||||
|
|
||||||
# Platform specific options
|
# Platform specific options
|
||||||
if COND_i386_pc
|
if COND_i386_pc
|
||||||
CFLAGS_PLATFORM += -mrtd -mregparm=3
|
CFLAGS_PLATFORM += -mrtd -mregparm=3
|
||||||
|
|
Loading…
Reference in a new issue