Correct a typo to allow this to build

Noticed by:	bento
This commit is contained in:
Kris Kennaway 2002-08-23 03:22:58 +00:00
parent a10f4113f4
commit d2d4d128fa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=64852

View file

@ -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)