diff options
author | ngie <ngie@FreeBSD.org> | 2017-02-11 06:33:46 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-02-11 06:33:46 +0000 |
commit | c124588aa50a97b6421e589c0badd4ea7a311c81 (patch) | |
tree | 55de20b775364105738b4ab475c4378de65013fa | |
parent | 938881744bd9d44192f0c11475e2246240a97e6c (diff) | |
download | FreeBSD-src-c124588aa50a97b6421e589c0badd4ea7a311c81.zip FreeBSD-src-c124588aa50a97b6421e589c0badd4ea7a311c81.tar.gz |
MFC r312473:
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output
-rw-r--r-- | lib/libunbound/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libunbound/Makefile b/lib/libunbound/Makefile index 3c66181..e2471bf 100644 --- a/lib/libunbound/Makefile +++ b/lib/libunbound/Makefile @@ -1,8 +1,8 @@ # $FreeBSD$ # Vendor sources and generated files -LDNSDIR= ${.CURDIR}/../../contrib/ldns -UNBOUNDDIR= ${.CURDIR}/../../contrib/unbound +LDNSDIR= ${SRCTOP}/contrib/ldns +UNBOUNDDIR= ${SRCTOP}/contrib/unbound # Hold my beer and watch this .PATH: ${UNBOUNDDIR} ${UNBOUNDDIR}/compat ${UNBOUNDDIR}/dns64 ${UNBOUNDDIR}/iterator ${UNBOUNDDIR}/sldns ${UNBOUNDDIR}/libunbound ${UNBOUNDDIR}/services ${UNBOUNDDIR}/services/cache ${UNBOUNDDIR}/util ${UNBOUNDDIR}/util/data ${UNBOUNDDIR}/util/storage ${UNBOUNDDIR}/validator |