1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Don't compile NETGRAPH out of ppp for the release crunch

This commit is contained in:
Brian Somers 1999-11-20 10:55:27 +00:00
parent 2c11c6eb6b
commit dc4511d5eb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=53455

View File

@ -70,9 +70,9 @@ DPADD+= ${LIBNETGRAPH}
.if defined(RELEASE_CRUNCH)
# We must create these objects because crunchgen will link them,
# and we don't want any unused symbols to spoil the final link.
CFLAGS+=-DNONAT -DNORADIUS -DNOI4B -DNONETGRAPH
OBJS+= chap_ms.o ether.o nat_cmd.o radius.o
chap_ms.o ether.o nat_cmd.o radius.o:
CFLAGS+=-DNONAT -DNORADIUS -DNOI4B
OBJS+= chap_ms.o nat_cmd.o radius.o
chap_ms.o nat_cmd.o radius.o:
>null_${.PREFIX}.c
cc -c -o ${.TARGET} null_${.PREFIX}.c
.endif