svn commit: r313603 - stable/10/lib/libtelnet

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 06:36:14 UTC 2017


Author: ngie
Date: Sat Feb 11 06:36:12 2017
New Revision: 313603
URL: https://svnweb.freebsd.org/changeset/base/313603

Log:
  MFC r312475:
  
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This implifies pathing in make/displayed output

Modified:
  stable/10/lib/libtelnet/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libtelnet/Makefile
==============================================================================
--- stable/10/lib/libtelnet/Makefile	Sat Feb 11 06:35:29 2017	(r313602)
+++ stable/10/lib/libtelnet/Makefile	Sat Feb 11 06:36:12 2017	(r313603)
@@ -3,7 +3,7 @@
 
 .include <bsd.own.mk>
 
-TELNETDIR=	${.CURDIR}/../../contrib/telnet
+TELNETDIR=	${SRCTOP}/contrib/telnet
 .PATH:		${TELNETDIR}/libtelnet
 
 LIB=		telnet


More information about the svn-src-all mailing list