svn commit: r314226 - head/usr.sbin/syslogd

Ngie Cooper ngie at FreeBSD.org
Fri Feb 24 21:36:00 UTC 2017


Author: ngie
Date: Fri Feb 24 21:35:59 2017
New Revision: 314226
URL: https://svnweb.freebsd.org/changeset/base/314226

Log:
  Use SRCTOP instead of .CURDIR relative paths with ".."
  
  This simplifies pathing in make/displayed output
  
  MFC after:	1 week
  Sponsored by:	Dell EMC Isilon

Modified:
  head/usr.sbin/syslogd/Makefile

Modified: head/usr.sbin/syslogd/Makefile
==============================================================================
--- head/usr.sbin/syslogd/Makefile	Fri Feb 24 21:35:53 2017	(r314225)
+++ head/usr.sbin/syslogd/Makefile	Fri Feb 24 21:35:59 2017	(r314226)
@@ -3,7 +3,7 @@
 
 .include <src.opts.mk>
 
-.PATH: ${.CURDIR}/../../usr.bin/wall
+.PATH: ${SRCTOP}/usr.bin/wall
 
 PROG=	syslogd
 MAN=	syslog.conf.5 syslogd.8
@@ -20,6 +20,6 @@ CFLAGS+= -DINET
 CFLAGS+= -DINET6
 .endif
 
-CFLAGS+= -I${.CURDIR}/../../usr.bin/wall
+CFLAGS+= -I${SRCTOP}/usr.bin/wall
 
 .include <bsd.prog.mk>


More information about the svn-src-all mailing list