svn commit: r248357 - stable/9/include/arpa

Brooks Davis brooks at FreeBSD.org
Fri Mar 15 22:26:19 UTC 2013


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>


More information about the svn-src-all mailing list