diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2009-06-19 20:52:20 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2009-06-19 20:52:20 +0000 |
commit | 22811793dd1c72fd1a23fe2414757af23aa97c11 (patch) | |
tree | f5de9226194dd4ed68740dc800e78caa4bd40b32 /app-admin/sysstat | |
parent | stable ppc64, bug 273131 (diff) | |
download | gentoo-2-22811793dd1c72fd1a23fe2414757af23aa97c11.tar.gz gentoo-2-22811793dd1c72fd1a23fe2414757af23aa97c11.tar.bz2 gentoo-2-22811793dd1c72fd1a23fe2414757af23aa97c11.zip |
Really fix the parallel make bug with libsyscom.a now.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/sysstat')
-rw-r--r-- | app-admin/sysstat/ChangeLog | 6 | ||||
-rw-r--r-- | app-admin/sysstat/files/sysstat-9.0.3-ar.patch | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/app-admin/sysstat/ChangeLog b/app-admin/sysstat/ChangeLog index 778c067c30c0..4443ee14d686 100644 --- a/app-admin/sysstat/ChangeLog +++ b/app-admin/sysstat/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-admin/sysstat # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/ChangeLog,v 1.138 2009/06/02 05:57:07 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/ChangeLog,v 1.139 2009/06/19 20:52:19 robbat2 Exp $ + + 19 Jun 2009; Robin H. Johnson <robbat2@gentoo.org> + files/sysstat-9.0.3-ar.patch: + Really fix the parallel make bug with libsyscom.a now. *sysstat-9.0.3-r1 (02 Jun 2009) diff --git a/app-admin/sysstat/files/sysstat-9.0.3-ar.patch b/app-admin/sysstat/files/sysstat-9.0.3-ar.patch index fc6fb54ebe00..0fe0b1cde358 100644 --- a/app-admin/sysstat/files/sysstat-9.0.3-ar.patch +++ b/app-admin/sysstat/files/sysstat-9.0.3-ar.patch @@ -3,15 +3,15 @@ Get rid of the implicit rule entirely (bug #212398). --- sysstat-9.0.3/Makefile.in.orig 2009-04-13 16:27:15.000000000 +0200 +++ sysstat-9.0.3/Makefile.in 2009-05-31 18:48:48.000000000 +0200 -@@ -175,9 +175,8 @@ +@@ -175,9 +175,7 @@ # Explicit rules needed to prevent possible file corruption # when using parallel execution. -libsyscom.a: libsyscom.a(common.o ioconf.o) - $(AR) rv $@ common.o - $(AR) rv $@ ioconf.o +- $(AR) s $@ +libsyscom.a: common.o ioconf.o -+ $(AR) rv $@ $? - $(AR) s $@ ++ $(AR) rvs $@ $? librdstats.a: librdstats.a(rd_stats.o) |