Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/sysstat/files: sysstat-9.0.3-ar.patch
Date: Tue, 02 Jun 2009 05:57:09
Message-Id: E1MBMzj-0004N8-MI@stork.gentoo.org
1 jer 09/06/02 05:57:07
2
3 Added: sysstat-9.0.3-ar.patch
4 Log:
5 Version bump to patch the old parallel make bug yet again (bug #212398).
6 (Portage version: 2.2_rc33/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 app-admin/sysstat/files/sysstat-9.0.3-ar.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/sysstat/files/sysstat-9.0.3-ar.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/sysstat/files/sysstat-9.0.3-ar.patch?rev=1.1&content-type=text/plain
13
14 Index: sysstat-9.0.3-ar.patch
15 ===================================================================
16 Get rid of the implicit rule entirely (bug #212398).
17
18
19 --- sysstat-9.0.3/Makefile.in.orig 2009-04-13 16:27:15.000000000 +0200
20 +++ sysstat-9.0.3/Makefile.in 2009-05-31 18:48:48.000000000 +0200
21 @@ -175,9 +175,8 @@
22
23 # Explicit rules needed to prevent possible file corruption
24 # when using parallel execution.
25 -libsyscom.a: libsyscom.a(common.o ioconf.o)
26 - $(AR) rv $@ common.o
27 - $(AR) rv $@ ioconf.o
28 +libsyscom.a: common.o ioconf.o
29 + $(AR) rv $@ $?
30 $(AR) s $@
31
32 librdstats.a: librdstats.a(rd_stats.o)