Author: brooks Date: Fri Mar 15 22:26:19 2013 New Revision: 248357 URL: http://svnweb.freebsd.org/changeset/base/248357
Log: MFC r245886,245911 Don't install telnet.h if it will be installed by libtelnet. Modified: stable/9/include/arpa/Makefile Directory Properties: stable/9/include/arpa/ (props changed) Modified: stable/9/include/arpa/Makefile ============================================================================== --- stable/9/include/arpa/Makefile Fri Mar 15 22:24:34 2013 (r248356) +++ stable/9/include/arpa/Makefile Fri Mar 15 22:26:19 2013 (r248357) @@ -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> _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"