Don't install telnet.h if it will be installed by libtelnet.

This commit is contained in:
Brooks Davis 2013-01-24 16:28:37 +00:00
parent dda3ce5a63
commit 9c08d1746a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=245886

View File

@ -1,7 +1,12 @@
# $FreeBSD$
.include <bsd.own.mk>
NO_OBJ=
INCS= ftp.h inet.h nameser.h nameser_compat.h telnet.h tftp.h
INCS= ftp.h inet.h nameser.h nameser_compat.h tftp.h
.if ${MK_TELNET} == "NO"
INCS+= telnet.h
.endif
INCSDIR=${INCLUDEDIR}/arpa
.include <bsd.prog.mk>