diff options
author | ngie <ngie@FreeBSD.org> | 2017-02-11 05:56:48 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-02-11 05:56:48 +0000 |
commit | 5e8ae52006eaf266709367c4ce0bf287c95c29de (patch) | |
tree | 5703dfddec4c0d98a258ab40aa3e621ab57eaaea /lib/libblocksruntime | |
parent | b5d4edd3b68f19f24033dac87be8c50dddf7a908 (diff) | |
download | FreeBSD-src-5e8ae52006eaf266709367c4ce0bf287c95c29de.zip FreeBSD-src-5e8ae52006eaf266709367c4ce0bf287c95c29de.tar.gz |
MFC r312459:
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output
Diffstat (limited to 'lib/libblocksruntime')
-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 01a78fe..3dee852 100644 --- a/lib/libblocksruntime/Makefile +++ b/lib/libblocksruntime/Makefile @@ -5,7 +5,7 @@ SHLIB_MAJOR=0 CFLAGS+=-I${.CURDIR} WARNS?= 2 -.PATH: ${.CURDIR}/../../contrib/compiler-rt/BlocksRuntime +.PATH: ${SRCTOP}/contrib/compiler-rt/BlocksRuntime INCS= Block.h Block_private.h SRCS= data.c runtime.c |