diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2017-03-04 11:30:04 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2017-03-04 11:30:04 +0000 |
commit | acc37ca1c15f7cd8b5e5b0389cf6e6b98ea61447 (patch) | |
tree | cfebd598ad39cee0b43fbc6ccad2983ede628cde /cddl/usr.sbin/dtrace | |
parent | a251f9dcf891805ae2101945d0d3082ec5a1768c (diff) | |
download | src-acc37ca1c15f7cd8b5e5b0389cf6e6b98ea61447.tar.gz src-acc37ca1c15f7cd8b5e5b0389cf6e6b98ea61447.zip |
cddl: normalize paths using SRCTOP-relative paths or :H when possible
This simplifies make logic/output
While here, remove bogus CFLAGS which look for headers in cddl/lib/libumem.
There aren't any source files there (just Makefiles)
MFC after: 1 month
Sponsored by: Dell EMC Isilon
Notes
Notes:
svn path=/head/; revision=314654
Diffstat (limited to 'cddl/usr.sbin/dtrace')
-rw-r--r-- | cddl/usr.sbin/dtrace/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cddl/usr.sbin/dtrace/Makefile b/cddl/usr.sbin/dtrace/Makefile index ec41c60cb17c..501b7c14861a 100644 --- a/cddl/usr.sbin/dtrace/Makefile +++ b/cddl/usr.sbin/dtrace/Makefile @@ -2,7 +2,7 @@ .include <src.opts.mk> -.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/cmd/dtrace +.PATH: ${SRCTOP}/cddl/contrib/opensolaris/cmd/dtrace PROG= dtrace SRCS= dtrace.c @@ -10,8 +10,8 @@ BINDIR?= /usr/sbin WARNS?= 1 -CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \ - -I${.CURDIR}/../../../cddl/compat/opensolaris/include \ +CFLAGS+= -I${SRCTOP}/sys/cddl/compat/opensolaris \ + -I${SRCTOP}/cddl/compat/opensolaris/include \ -I${OPENSOLARIS_USR_DISTDIR}/head \ -I${OPENSOLARIS_USR_DISTDIR}/lib/libdtrace/common \ -I${OPENSOLARIS_USR_DISTDIR}/lib/libproc/common \ |