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: 0050_all_glibc-make-3.82-rules.patch
Date: Tue, 03 Jan 2012 00:33:19
Message-Id: 20120103003309.8EC732004B@flycatcher.gentoo.org
1 vapier 12/01/03 00:33:09
2
3 Added: 0050_all_glibc-make-3.82-rules.patch
4 Log:
5 fix building with make-3.82+ #393529
6
7 Revision Changes Path
8 1.1 src/patchsets/glibc/2.9/0050_all_glibc-make-3.82-rules.patch
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.9/0050_all_glibc-make-3.82-rules.patch?rev=1.1&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.9/0050_all_glibc-make-3.82-rules.patch?rev=1.1&content-type=text/plain
12
13 Index: 0050_all_glibc-make-3.82-rules.patch
14 ===================================================================
15 http://bugs.gentoo.org/331995
16
17 From 32cf40699346d37fabfa887bbd95e95004799ae1 Mon Sep 17 00:00:00 2001
18 From: Andreas Schwab <schwab@××××××.com>
19 Date: Mon, 6 Sep 2010 14:55:59 +0200
20 Subject: [PATCH] Don't mix pattern rules with normal rules
21
22 ---
23 ChangeLog | 4 ++++
24 manual/Makefile | 5 ++++-
25 2 files changed, 8 insertions(+), 1 deletions(-)
26
27 diff --git a/manual/Makefile b/manual/Makefile
28 index c5866eb..b1f5fa7 100644
29 --- a/manual/Makefile
30 +++ b/manual/Makefile
31 @@ -232,7 +232,10 @@ ifdef objpfx
32 .PHONY: stubs
33 stubs: $(objpfx)stubs
34 endif
35 -$(objpfx)stubs ../po/manual.pot $(objpfx)stamp%:
36 +$(objpfx)stubs ../po/manual.pot:
37 + $(make-target-directory)
38 + touch $@
39 +$(objpfx)stamp%:
40 $(make-target-directory)
41 touch $@
42
43 --
44 1.7.3