From 8fe70bb8f265f6e7d4b81b72b83387c56e9fecae Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Fri, 24 Feb 2017 21:35:59 +0000 Subject: [PATCH] Use SRCTOP instead of .CURDIR relative paths with ".." This simplifies pathing in make/displayed output MFC after: 1 week Sponsored by: Dell EMC Isilon --- usr.sbin/syslogd/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/syslogd/Makefile b/usr.sbin/syslogd/Makefile index ac9acbfcea9d..b375c28918f7 100644 --- a/usr.sbin/syslogd/Makefile +++ b/usr.sbin/syslogd/Makefile @@ -3,7 +3,7 @@ .include -.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