diff options
author | Jeroen Roovers <jer@gentoo.org> | 2011-08-25 14:10:57 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2011-08-25 14:10:57 +0000 |
commit | d708f5d17e15504933bdfc419fb5dcc8d3b49f0b (patch) | |
tree | 6408fbdd7b7a8294248ccc50cf8ebcc72ef0f13d /app-benchmarks | |
parent | Version bump, drop old (diff) | |
download | gentoo-2-d708f5d17e15504933bdfc419fb5dcc8d3b49f0b.tar.gz gentoo-2-d708f5d17e15504933bdfc419fb5dcc8d3b49f0b.tar.bz2 gentoo-2-d708f5d17e15504933bdfc419fb5dcc8d3b49f0b.zip |
Fix parallel make warning thanks to Michael (bug #380345).
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/bonnie/ChangeLog | 5 | ||||
-rw-r--r-- | app-benchmarks/bonnie/files/Makefile.patch | 15 |
2 files changed, 16 insertions, 4 deletions
diff --git a/app-benchmarks/bonnie/ChangeLog b/app-benchmarks/bonnie/ChangeLog index 23976f987618..d5d8fb8b91bb 100644 --- a/app-benchmarks/bonnie/ChangeLog +++ b/app-benchmarks/bonnie/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-benchmarks/bonnie # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bonnie/ChangeLog,v 1.18 2011/02/06 05:22:59 leio Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bonnie/ChangeLog,v 1.19 2011/08/25 14:10:56 jer Exp $ + + 25 Aug 2011; Jeroen Roovers <jer@gentoo.org> files/Makefile.patch: + Fix parallel make warning thanks to Michael (bug #380345). 06 Feb 2011; Mart Raudsepp <leio@gentoo.org> bonnie-2.0.6.ebuild: Drop to ~mips diff --git a/app-benchmarks/bonnie/files/Makefile.patch b/app-benchmarks/bonnie/files/Makefile.patch index f66d6a100ae2..c4367087b8b5 100644 --- a/app-benchmarks/bonnie/files/Makefile.patch +++ b/app-benchmarks/bonnie/files/Makefile.patch @@ -1,8 +1,17 @@ ---- Makefile.orig 2003-01-07 14:21:26.000000000 -0600 -+++ Makefile 2003-01-07 14:23:23.000000000 -0600 -@@ -1,4 +1,4 @@ +--- a/Makefile 1996-08-29 03:45:37.000000000 +0200 ++++ b/Makefile 2011-08-25 16:07:10.757629898 +0200 +@@ -1,11 +1,11 @@ -CFLAGS = -O $(SYSFLAGS) +CFLAGS = $(SYSFLAGS) bsd: @echo 'Options are "make bsd" and "make SysV" - the default is "bsd".' + @echo 'If you get messages about missing functions, try "make SysV."' +- make Bonnie ++ $(MAKE) Bonnie + + SysV: +- make Bonnie 'SYSFLAGS=-DSysV' ++ $(MAKE) Bonnie 'SYSFLAGS=-DSysV' + + Bonnie: |