Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/glibc/2.9: 1018_all_glibc-awk-in-C-locale.patch README.history
Date: Mon, 29 Dec 2008 21:44:35
Message-Id: E1LHPub-0002bS-G2@stork.gentoo.org
1 vapier 08/12/29 21:44:33
2
3 Modified: README.history
4 Added: 1018_all_glibc-awk-in-C-locale.patch
5 Log:
6 fix building iconvdata in weird locales #252802 by Harald van Dijk
7
8 Revision Changes Path
9 1.6 src/patchsets/glibc/2.9/README.history
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.9/README.history?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.9/README.history?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.9/README.history?r1=1.5&r2=1.6
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/glibc/2.9/README.history,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- README.history 27 Dec 2008 04:18:39 -0000 1.5
22 +++ README.history 29 Dec 2008 21:44:33 -0000 1.6
23 @@ -1,3 +1,6 @@
24 +3 [pending]
25 + + 1018_all_glibc-awk-in-C-locale.patch
26 +
27 2 26.12.2008
28 + 1020_all_glibc-2.9-strlen-hack.patch
29 + 1060_all_glibc-nss-deepbind.patch
30
31
32
33 1.1 src/patchsets/glibc/2.9/1018_all_glibc-awk-in-C-locale.patch
34
35 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.9/1018_all_glibc-awk-in-C-locale.patch?rev=1.1&view=markup
36 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.9/1018_all_glibc-awk-in-C-locale.patch?rev=1.1&content-type=text/plain
37
38 Index: 1018_all_glibc-awk-in-C-locale.patch
39 ===================================================================
40 http://bugs.gentoo.org/252802
41
42 2008-12-29 Mike Frysinger <vapier@g.o>
43
44 * iconvdata/Makefile (iconv-rules): Use LC_ALL=C when running awk script.
45
46 --- a/iconvdata/Makefile
47 +++ b/iconvdata/Makefile
48 @@ -286,7 +286,7 @@ $(objpfx)iconv-rules: Makefile
49 { echo $(filter-out lib%, $(modules)); \
50 echo 8bit $(gen-8bit-modules); \
51 echo 8bit-gap $(gen-8bit-gap-modules); } | \
52 - $(AWK) 'NR == 1 { \
53 + LC_ALL=C $(AWK) 'NR == 1 { \
54 for (i = 1; i <= NF; i++) { \
55 printf "%s-routines := %s\n", $$i, tolower($$i); \
56 printf "%s-map := gconv.map\n", $$i; \