diff options
Diffstat (limited to 'app-benchmarks/bonnie/files/Makefile.patch')
-rw-r--r-- | app-benchmarks/bonnie/files/Makefile.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app-benchmarks/bonnie/files/Makefile.patch b/app-benchmarks/bonnie/files/Makefile.patch new file mode 100644 index 000000000000..c4367087b8b5 --- /dev/null +++ b/app-benchmarks/bonnie/files/Makefile.patch @@ -0,0 +1,17 @@ +--- 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: |