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