From 97856149a1dfe152305e38969db5245fe52c909a Mon Sep 17 00:00:00 2001 From: brooks Date: Thu, 24 Jan 2013 16:28:37 +0000 Subject: [PATCH] Don't install telnet.h if it will be installed by libtelnet. --- include/arpa/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/arpa/Makefile b/include/arpa/Makefile index a480b31341e..6b00641e65e 100644 --- a/include/arpa/Makefile +++ b/include/arpa/Makefile @@ -1,7 +1,12 @@ # $FreeBSD$ +.include + 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 -- 2.45.0