svn commit: r321806 - head/lib/libtelnet

Cy Schubert cy at FreeBSD.org
Mon Jul 31 19:07:46 UTC 2017


Author: cy
Date: Mon Jul 31 19:07:45 2017
New Revision: 321806
URL: https://svnweb.freebsd.org/changeset/base/321806

Log:
  Remove redundant include directories which expand to a noop,
  "-I/lib/krb5 -I -I".
  
  Reviewed by:	ngie@, markm@
  MFC after:	1 month
  Differential Revision:	D11769

Modified:
  head/lib/libtelnet/Makefile

Modified: head/lib/libtelnet/Makefile
==============================================================================
--- head/lib/libtelnet/Makefile	Mon Jul 31 18:48:58 2017	(r321805)
+++ head/lib/libtelnet/Makefile	Mon Jul 31 19:07:45 2017	(r321806)
@@ -23,8 +23,7 @@ CFLAGS+=	-DENCRYPTION -DAUTHENTICATION -DSRA
 
 .if ${MK_KERBEROS_SUPPORT} != "no"
 SRCS+=		kerberos5.c
-CFLAGS+=	-DKRB5 -I${KRB5DIR}/lib/krb5 -I${KRB5OBJDIR} -I${ASN1OBJDIR}
-CFLAGS+=	-DFORWARD -Dnet_write=telnet_net_write
+CFLAGS+=	-DKRB5 -DFORWARD -Dnet_write=telnet_net_write
 .endif
 
 .include <bsd.lib.mk>


More information about the svn-src-head mailing list