From 2905778e97c803c989312e0cc1b5ede2d85a4c5a Mon Sep 17 00:00:00 2001 From: ngie Date: Sat, 11 Feb 2017 06:33:46 +0000 Subject: [PATCH] MFC r312473: Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones This implifies pathing in make/displayed output git-svn-id: svn://svn.freebsd.org/base/stable/10@313601 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- lib/libunbound/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libunbound/Makefile b/lib/libunbound/Makefile index 3c6618127..e2471bf6a 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 -- 2.45.0