From d708f5d17e15504933bdfc419fb5dcc8d3b49f0b Mon Sep 17 00:00:00 2001 From: Jeroen Roovers Date: Thu, 25 Aug 2011 14:10:57 +0000 Subject: Fix parallel make warning thanks to Michael (bug #380345). (Portage version: 2.2.0_alpha51/cvs/Linux x86_64) --- app-benchmarks/bonnie/ChangeLog | 5 ++++- app-benchmarks/bonnie/files/Makefile.patch | 15 ++++++++++++--- 2 files changed, 16 insertions(+), 4 deletions(-) (limited to 'app-benchmarks/bonnie') 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 files/Makefile.patch: + Fix parallel make warning thanks to Michael (bug #380345). 06 Feb 2011; Mart Raudsepp 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: -- cgit v1.2.3-65-gdbad