diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2017-01-20 04:35:49 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2017-01-20 04:35:49 +0000 |
commit | d7258acdbda2851d6f360e02431fb71e13905749 (patch) | |
tree | 2f89527ffe7f790d0b17c88b7cfbe8f3264f290e /lib/libsbuf/Makefile | |
parent | ff9aa684f0e417101363ba65416d93601c236e87 (diff) | |
download | src-d7258acdbda2851d6f360e02431fb71e13905749.tar.gz src-d7258acdbda2851d6f360e02431fb71e13905749.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=312483
Diffstat (limited to 'lib/libsbuf/Makefile')
-rw-r--r-- | lib/libsbuf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libsbuf/Makefile b/lib/libsbuf/Makefile index ebf4a8d4a99d..3d8ea6f5ddaa 100644 --- a/lib/libsbuf/Makefile +++ b/lib/libsbuf/Makefile @@ -10,6 +10,6 @@ SHLIB_MAJOR = 6 SYMBOL_MAPS= ${.CURDIR}/Symbol.map VERSION_DEF= ${.CURDIR}/Version.def -.PATH: ${.CURDIR}/../../sys/kern +.PATH: ${SRCTOP}/sys/kern .include <bsd.lib.mk> |