svn commit: r314458 - in head/usr.sbin: tcpdchk tcpdmatch

Ngie Cooper ngie at FreeBSD.org
Wed Mar 1 04:17:19 UTC 2017


Author: ngie
Date: Wed Mar  1 04:17:18 2017
New Revision: 314458
URL: https://svnweb.freebsd.org/changeset/base/314458

Log:
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This simplifies pathing in make/displayed output.
  
  MFC after:	1 week
  Sponsored by:	Dell EMC Isilon

Modified:
  head/usr.sbin/tcpdchk/Makefile
  head/usr.sbin/tcpdmatch/Makefile

Modified: head/usr.sbin/tcpdchk/Makefile
==============================================================================
--- head/usr.sbin/tcpdchk/Makefile	Wed Mar  1 04:16:40 2017	(r314457)
+++ head/usr.sbin/tcpdchk/Makefile	Wed Mar  1 04:17:18 2017	(r314458)
@@ -2,7 +2,7 @@
 
 .include <src.opts.mk>
 
-.PATH: ${.CURDIR}/../../contrib/tcp_wrappers
+.PATH: ${SRCTOP}/contrib/tcp_wrappers
 
 PROG=	tcpdchk
 MAN=	tcpdchk.8

Modified: head/usr.sbin/tcpdmatch/Makefile
==============================================================================
--- head/usr.sbin/tcpdmatch/Makefile	Wed Mar  1 04:16:40 2017	(r314457)
+++ head/usr.sbin/tcpdmatch/Makefile	Wed Mar  1 04:17:18 2017	(r314458)
@@ -2,7 +2,7 @@
 
 .include <src.opts.mk>
 
-.PATH: ${.CURDIR}/../../contrib/tcp_wrappers
+.PATH: ${SRCTOP}/contrib/tcp_wrappers
 
 PROG=	tcpdmatch
 MAN=	tcpdmatch.8


More information about the svn-src-head mailing list