diff options
author | ngie <ngie@FreeBSD.org> | 2017-02-11 06:19:25 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-02-11 06:19:25 +0000 |
commit | 54b7fbc0525e5bca15cb36181e82168ea907bcff (patch) | |
tree | 318c672343bc63f3f61132e2e3c4d68a899496c9 /lib | |
parent | f7558dc7498e5054ab7bbea6b2c342c5e8ed4ed3 (diff) | |
download | FreeBSD-src-54b7fbc0525e5bca15cb36181e82168ea907bcff.zip FreeBSD-src-54b7fbc0525e5bca15cb36181e82168ea907bcff.tar.gz |
MFC r312463:
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/libbz2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libbz2/Makefile b/lib/libbz2/Makefile index b505927..2521009 100644 --- a/lib/libbz2/Makefile +++ b/lib/libbz2/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -BZ2DIR= ${.CURDIR}/../../contrib/bzip2 +BZ2DIR= ${SRCTOP}/contrib/bzip2 .PATH: ${BZ2DIR} LIB= bz2 |