Use SRCTOP instead of .CURDIR relative paths with ".."

This simplifies pathing in make/displayed output

MFC after:	1 week
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Enji Cooper 2017-02-24 21:35:59 +00:00
parent bd911530b7
commit 8fe70bb8f2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=314226

View File

@ -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>