diff options
author | brian <brian@FreeBSD.org> | 1999-11-09 00:16:30 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1999-11-09 00:16:30 +0000 |
commit | 63fbdd358838db4554d170786550c4277ee6e1dd (patch) | |
tree | 05c7a691fe3ed8bdddb47e44d25e0be5aaf90f9b | |
parent | 24cece0909863c290cd0f34f77bd50a172908bf2 (diff) | |
download | FreeBSD-src-63fbdd358838db4554d170786550c4277ee6e1dd.zip FreeBSD-src-63fbdd358838db4554d170786550c4277ee6e1dd.tar.gz |
Add an empty netgraph.o when building a release to keep the
crunch stuff happy.
Breakage spotted by: phk
-rw-r--r-- | usr.sbin/ppp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/Makefile b/usr.sbin/ppp/Makefile index e74ddc5..c130e66 100644 --- a/usr.sbin/ppp/Makefile +++ b/usr.sbin/ppp/Makefile @@ -71,8 +71,8 @@ DPADD+= ${LIBNETGRAPH} # 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+= nat_cmd.o chap_ms.o radius.o -chap_ms.o nat_cmd.o radius.o: +OBJS+= chap_ms.o nat_cmd.o netgraph.o radius.o +chap_ms.o nat_cmd.o netgraph.o radius.o: >null_${.PREFIX}.c cc -c -o ${.TARGET} null_${.PREFIX}.c .endif |