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.15: 6601_all_glibc-2.15-mips-n32-typo.patch README.history
Date: Wed, 22 Aug 2012 22:49:02
Message-Id: 20120822224847.635E7203B9@flycatcher.gentoo.org
1 vapier 12/08/22 22:48:47
2
3 Modified: README.history
4 Added: 6601_all_glibc-2.15-mips-n32-typo.patch
5 Log:
6 add fix from upstream for typo in mips n32 define name #431676 by Jim Faulkner
7
8 Revision Changes Path
9 1.31 src/patchsets/glibc/2.15/README.history
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.15/README.history?rev=1.31&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.15/README.history?rev=1.31&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.15/README.history?r1=1.30&r2=1.31
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/glibc/2.15/README.history,v
18 retrieving revision 1.30
19 retrieving revision 1.31
20 diff -u -r1.30 -r1.31
21 --- README.history 17 Aug 2012 16:19:17 -0000 1.30
22 +++ README.history 22 Aug 2012 22:48:47 -0000 1.31
23 @@ -1,5 +1,6 @@
24 -21 [pending]
25 +21 22 Aug 2012
26 - 6305_all_glibc-2.11-s390-older-binutils.patch
27 + + 6601_all_glibc-2.15-mips-n32-typo.patch
28
29 20 11 Aug 2012
30 + 0064_all_glibc-2.15-nptl-implicit-decl.patch
31
32
33
34 1.1 src/patchsets/glibc/2.15/6601_all_glibc-2.15-mips-n32-typo.patch
35
36 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.15/6601_all_glibc-2.15-mips-n32-typo.patch?rev=1.1&view=markup
37 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.15/6601_all_glibc-2.15-mips-n32-typo.patch?rev=1.1&content-type=text/plain
38
39 Index: 6601_all_glibc-2.15-mips-n32-typo.patch
40 ===================================================================
41 https://bugs.gentoo.org/431676
42
43 fix already in upstream and glibc-2.16
44
45 From 12139ca306df26046c14c98c6dc13bd15d3071a2 Mon Sep 17 00:00:00 2001
46 From: Joseph Myers <joseph@××××××××××××.com>
47 Date: Fri, 1 Jun 2012 14:42:11 +0000
48 Subject: [PATCH] Fix typo in MIPS abi-n32-condition.
49
50 ---
51 ChangeLog.mips | 5 +++++
52 sysdeps/unix/sysv/linux/mips/Makefile | 4 ++--
53 2 files changed, 7 insertions(+), 2 deletions(-)
54
55 2012-06-01 Joseph Myers <joseph@××××××××××××.com>
56
57 * sysdeps/unix/sysv/linux/mips/Makefile (abi-n32-condition): Fix
58 typo.
59
60 diff --git a/sysdeps/unix/sysv/linux/mips/Makefile b/sysdeps/unix/sysv/linux/mips/Makefile
61 index 2bbc9a4..99c554f 100644
62 --- a/ports/sysdeps/unix/sysv/linux/mips/Makefile
63 +++ b/ports/sysdeps/unix/sysv/linux/mips/Makefile
64 @@ -12,7 +12,7 @@ sysdep_routines += cachectl cacheflush sysmips _test_and_set
65 syscall-list-o32-options := -mabi=32
66 syscall-list-o32-condition := _MIPS_SIM == _MIPS_SIM_ABI32
67 syscall-list-n32-options := -mabi=n32
68 -syscall-list-n32-condition := _MIPS_SIM == _MIPS_SIM_ABIN32
69 +syscall-list-n32-condition := _MIPS_SIM == _MIPS_SIM_NABI32
70 syscall-list-n64-options := -mabi=64
71 syscall-list-n64-condition := _MIPS_SIM == _MIPS_SIM_ABI64
72 endif
73 --
74 1.7.9.7