From d810ce2256f717d8d8f0d0e2c433ffa3e4947b36 Mon Sep 17 00:00:00 2001 From: ngie Date: Tue, 30 May 2017 04:27:05 +0000 Subject: MFC r315170: r315170 (by imp): Adopt SRCTOP in usr.bin Prefer ${SRCTOP}/foo over ${.CURDIR}/../../foo and ${SRCTOP}/usr.bin/foo over ${.CURDIR}/../foo for paths in Makefiles. Silence on: arch@ (twice) --- usr.bin/truss/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/truss/Makefile') diff --git a/usr.bin/truss/Makefile b/usr.bin/truss/Makefile index d077eda..27881fa 100644 --- a/usr.bin/truss/Makefile +++ b/usr.bin/truss/Makefile @@ -6,8 +6,8 @@ SRCS= main.c setup.c syscalls.c LIBADD= sysdecode -#CFLAGS+= -I${.CURDIR} -I. -I${.CURDIR}/../../sys -CFLAGS+= -I${.CURDIR}/../../sys +#CFLAGS+= -I${.CURDIR} -I. -I${SRCTOP}/sys +CFLAGS+= -I${SRCTOP}/sys ABIS+= freebsd # Each ABI is expected to have an ABI.c, MACHINE_ARCH-ABI.c or -- cgit v1.1