diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-12-30 02:18:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-12-30 02:18:00 +0000 |
commit | 25df09ab4d9c0b0b271bc8bac9388857eaf72bec (patch) | |
tree | eb14e72b20b23e5533eaf86955bf44a9d5f06c9f | |
parent | bfbbc63f04a597d8ae35687a6cdae07f02bcf5dc (diff) | |
download | glibc-25df09ab4d9c0b0b271bc8bac9388857eaf72bec.tar glibc-25df09ab4d9c0b0b271bc8bac9388857eaf72bec.tar.gz glibc-25df09ab4d9c0b0b271bc8bac9388857eaf72bec.tar.bz2 glibc-25df09ab4d9c0b0b271bc8bac9388857eaf72bec.zip |
* iconvdata/Makefile (iconv-rules): Use LC_ALL=C when running awk
script.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | iconvdata/Makefile | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2008-12-29 Mike Frysinger <vapier@gentoo.org> + + * iconvdata/Makefile (iconv-rules): Use LC_ALL=C when running awk + script. + 2008-12-29 Ulrich Drepper <drepper@redhat.com> * sysdeps/posix/getaddrinfo.c (gaih_inet): When the diff --git a/iconvdata/Makefile b/iconvdata/Makefile index e93de56c50..d8fb282871 100644 --- a/iconvdata/Makefile +++ b/iconvdata/Makefile @@ -286,6 +286,7 @@ $(objpfx)iconv-rules: Makefile { echo $(filter-out lib%, $(modules)); \ echo 8bit $(gen-8bit-modules); \ echo 8bit-gap $(gen-8bit-gap-modules); } | \ + LC_ALL=C \ $(AWK) 'NR == 1 { \ for (i = 1; i <= NF; i++) { \ printf "%s-routines := %s\n", $$i, tolower($$i); \ |