mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Correct a typo to allow this to build
Noticed by: bento
This commit is contained in:
parent
a10f4113f4
commit
d2d4d128fa
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=64852
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue