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.7: 1050_all_glibc-posix-awk.patch README.history
Date: Mon, 24 Dec 2007 19:24:14
Message-Id: E1J6suE-0000df-Qa@stork.gentoo.org
1 vapier 07/12/24 19:24:06
2
3 Modified: README.history
4 Added: 1050_all_glibc-posix-awk.patch
5 Log:
6 use a POSIX regex to fix awk on BSD #202511
7
8 Revision Changes Path
9 1.8 src/patchsets/glibc/2.7/README.history
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.7/README.history?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.7/README.history?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.7/README.history?r1=1.7&r2=1.8
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/glibc/2.7/README.history,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- README.history 11 Dec 2007 04:53:48 -0000 1.7
22 +++ README.history 24 Dec 2007 19:24:06 -0000 1.8
23 @@ -1,3 +1,6 @@
24 +1.5 12.24.2007
25 + + 1050_all_glibc-posix-awk.patch
26 +
27 1.4 10.12.2007
28 + 6018_all_glibc-ptr-mangling.patch
29
30
31
32
33 1.1 src/patchsets/glibc/2.7/1050_all_glibc-posix-awk.patch
34
35 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.7/1050_all_glibc-posix-awk.patch?rev=1.1&view=markup
36 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.7/1050_all_glibc-posix-awk.patch?rev=1.1&content-type=text/plain
37
38 Index: 1050_all_glibc-posix-awk.patch
39 ===================================================================
40 http://bugs.gentoo.org/202511
41
42 2007-12-24 Mike Frysinger <vapier@g.o>
43
44 * elf/Makefile ($(objpfx)ld.so): Use POSIX (EF)? in awk.
45
46 --- libc/elf/Makefile
47 +++ libc/elf/Makefile
48 @@ -308,7 +308,7 @@
49 -Wl,-soname=$(rtld-installed-name) -T $@.lds
50 rm -f $@.lds
51 readelf -s $@ \
52 - | awk '($$7 ~ /^UND(|EF)$$/ && $$1 != "0:" && $$4 != "REGISTER") { print; p=1 } END { exit p != 0 }'
53 + | awk '($$7 ~ /^UND(EF)?$$/ && $$1 != "0:" && $$4 != "REGISTER") { print; p=1 } END { exit p != 0 }'
54
55 # interp.c exists just to get this string into the libraries.
56 CFLAGS-interp.c = -D'RUNTIME_LINKER="$(slibdir)/$(rtld-installed-name)"' \
57
58
59
60 --
61 gentoo-commits@g.o mailing list