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.12.1: 0050_all_glibc-make-3.82-rules.patch README.history
Date: Wed, 29 Sep 2010 23:11:07
Message-Id: 20100929231059.9699320054@flycatcher.gentoo.org
1 vapier 10/09/29 23:10:59
2
3 Modified: README.history
4 Added: 0050_all_glibc-make-3.82-rules.patch
5 Log:
6 add fix from upstream for building with make-3.82 #331995
7
8 Revision Changes Path
9 1.6 src/patchsets/glibc/2.12.1/README.history
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.12.1/README.history?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.12.1/README.history?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.12.1/README.history?r1=1.5&r2=1.6
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/glibc/2.12.1/README.history,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- README.history 29 Sep 2010 22:53:20 -0000 1.5
22 +++ README.history 29 Sep 2010 23:10:59 -0000 1.6
23 @@ -1,4 +1,5 @@
24 4 [pending]
25 + + 0050_all_glibc-make-3.82-rules.patch
26 + 6531_all_sparc-glibc-2.12-epoll_create1.patch
27
28 3 23.08.2010
29
30
31
32 1.1 src/patchsets/glibc/2.12.1/0050_all_glibc-make-3.82-rules.patch
33
34 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.12.1/0050_all_glibc-make-3.82-rules.patch?rev=1.1&view=markup
35 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.12.1/0050_all_glibc-make-3.82-rules.patch?rev=1.1&content-type=text/plain
36
37 Index: 0050_all_glibc-make-3.82-rules.patch
38 ===================================================================
39 http://bugs.gentoo.org/331995
40
41 From 32cf40699346d37fabfa887bbd95e95004799ae1 Mon Sep 17 00:00:00 2001
42 From: Andreas Schwab <schwab@××××××.com>
43 Date: Mon, 6 Sep 2010 14:55:59 +0200
44 Subject: [PATCH] Don't mix pattern rules with normal rules
45
46 ---
47 ChangeLog | 4 ++++
48 manual/Makefile | 5 ++++-
49 2 files changed, 8 insertions(+), 1 deletions(-)
50
51 diff --git a/manual/Makefile b/manual/Makefile
52 index c5866eb..b1f5fa7 100644
53 --- a/manual/Makefile
54 +++ b/manual/Makefile
55 @@ -232,7 +232,10 @@ ifdef objpfx
56 .PHONY: stubs
57 stubs: $(objpfx)stubs
58 endif
59 -$(objpfx)stubs ../po/manual.pot $(objpfx)stamp%:
60 +$(objpfx)stubs ../po/manual.pot:
61 + $(make-target-directory)
62 + touch $@
63 +$(objpfx)stamp%:
64 $(make-target-directory)
65 touch $@
66
67 --
68 1.7.3