Fixed the fatal bug: CFLAGS should be added to, not overridden.

This prevented CPU and optimization flags to be added here.
This commit is contained in:
ru 2004-01-17 02:27:55 +00:00
parent 4464142fae
commit 8a660e9607
2 changed files with 2 additions and 2 deletions
lib/libbsnmp/libbsnmp
usr.sbin/faithd

@ -8,7 +8,7 @@ CONTRIB= ${.CURDIR}/../../../contrib/bsnmp/lib
LIB = bsnmp
WARNS= 6
CFLAGS= -I${CONTRIB}
CFLAGS+= -I${CONTRIB}
SRCS= asn1.c snmp.c snmpagent.c snmpclient.c
INCS= asn1.h snmp.h snmpagent.h snmpclient.h

@ -18,6 +18,6 @@ PROG= faithd
MAN= faithd.8
SRCS= faithd.c tcp.c ftp.c prefix.c
CFLAGS= -DHAVE_POLL_H
CFLAGS+= -DHAVE_POLL_H
.include <bsd.prog.mk>