summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2002-08-23 03:22:58 +0000
committerKris Kennaway <kris@FreeBSD.org>2002-08-23 03:22:58 +0000
commitd2d4d128fa0088b3a62acf55e20e5d5c3a7808ef (patch)
tree96d6bb75d630d458a206d636411b560eaf376680 /benchmarks
parentFix build on -current (machine/soundcard.h -> sys/soundcard.h) (diff)
Correct a typo to allow this to build
Noticed by: bento
Notes
Notes: svn path=/head/; revision=64852
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/dbench/files/patch-ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmarks/dbench/files/patch-ac b/benchmarks/dbench/files/patch-ac
index b133f56d7bda..cd235a139c9c 100644
--- a/benchmarks/dbench/files/patch-ac
+++ b/benchmarks/dbench/files/patch-ac
@@ -1,12 +1,12 @@
--- Makefile.orig Sun Sep 9 21:21:01 2001
-+++ Makefile Fri Apr 5 23:44:49 2002
++++ Makefile Thu Aug 22 20:21:37 2002
@@ -1,7 +1,7 @@
VERSION = 1.2.01
-CC = gcc
-CFLAGS = -O2 -Wall
+CC ?= gcc
-+CFLAGS ?= -O2 -Wall
++
CPPFLAGS = "-DVERSION=\"$(VERSION)\""
DB_OBJS = fileio.o util.o dbench.o child.o
@@ -15,7 +15,7 @@
dbench: $(DB_OBJS)
- $(CC) -o $@ $(DB_OBJS)
-+ $(CC) $(CFLAGS)-o $@ $(DB_OBJS)
++ $(CC) $(CFLAGS) -o $@ $(DB_OBJS)
tbench: $(TB_OBJS)
- $(CC) -o $@ $(TB_OBJS)