From 9eb8f6828f2929adab9c8c24da59abac332e2679 Mon Sep 17 00:00:00 2001 From: ngie Date: Tue, 7 Mar 2017 02:01:32 +0000 Subject: [PATCH] MFC r314226: Use SRCTOP instead of .CURDIR relative paths with ".." This simplifies pathing in make/displayed output git-svn-id: svn://svn.freebsd.org/base/stable/10@314822 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- 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 47640130b..6a006819b 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 @@ -18,6 +18,6 @@ WARNS?= 3 CFLAGS+= -DINET6 .endif -CFLAGS+= -I${.CURDIR}/../../usr.bin/wall +CFLAGS+= -I${SRCTOP}/usr.bin/wall .include -- 2.45.0