diff options
author | ngie <ngie@FreeBSD.org> | 2017-02-11 05:57:35 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-02-11 05:57:35 +0000 |
commit | d18ac4f0e545cb1379fa972f5a8c9b2161e5a31f (patch) | |
tree | 591f95da4cdcd5eec2895e5a97b6ff735d9e9f0b /lib | |
parent | 5e8ae52006eaf266709367c4ce0bf287c95c29de (diff) | |
download | FreeBSD-src-d18ac4f0e545cb1379fa972f5a8c9b2161e5a31f.zip FreeBSD-src-d18ac4f0e545cb1379fa972f5a8c9b2161e5a31f.tar.gz |
MFC r312460:
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libbluetooth/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libbluetooth/Makefile b/lib/libbluetooth/Makefile index 7e21892..7a2e134 100644 --- a/lib/libbluetooth/Makefile +++ b/lib/libbluetooth/Makefile @@ -5,7 +5,7 @@ LIB= bluetooth MAN= bluetooth.3 WARNS?= 2 -CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../sys +CFLAGS+= -I${.CURDIR} -I${SRCTOP}/sys SHLIB_MAJOR= 4 |