diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2017-01-20 03:56:10 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2017-01-20 03:56:10 +0000 |
commit | 8b25e8410533a6e69cceff910546b2dc485a5059 (patch) | |
tree | 1ed26fbc1e89a41dfb329044d16948876bb31ec6 /lib | |
parent | 4b649713fdb348a338f339f9ce2d994580356d78 (diff) | |
download | src-8b25e8410533a6e69cceff910546b2dc485a5059.tar.gz src-8b25e8410533a6e69cceff910546b2dc485a5059.zip |
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output
MFC after: 3 weeks
Sponsored by: Dell EMC Isilon
Notes
Notes:
svn path=/head/; revision=312459
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libblocksruntime/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libblocksruntime/Makefile b/lib/libblocksruntime/Makefile index 5933fb5253d2..a7b04d8ac07a 100644 --- a/lib/libblocksruntime/Makefile +++ b/lib/libblocksruntime/Makefile @@ -6,7 +6,7 @@ SHLIB_MAJOR=0 CFLAGS+=-I${.CURDIR} WARNS?= 2 -.PATH: ${.CURDIR}/../../contrib/compiler-rt/lib/BlocksRuntime +.PATH: ${SRCTOP}/contrib/compiler-rt/lib/BlocksRuntime INCS= Block.h Block_private.h SRCS= data.c runtime.c |