svn commit: r313601 - stable/10/lib/libunbound
Ngie Cooper
ngie at FreeBSD.org
Sat Feb 11 06:33:47 UTC 2017
Author: ngie
Date: Sat Feb 11 06:33:46 2017
New Revision: 313601
URL: https://svnweb.freebsd.org/changeset/base/313601
Log:
MFC r312473:
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output
Modified:
stable/10/lib/libunbound/Makefile
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/lib/libunbound/Makefile
==============================================================================
--- stable/10/lib/libunbound/Makefile Sat Feb 11 06:32:48 2017 (r313600)
+++ stable/10/lib/libunbound/Makefile Sat Feb 11 06:33:46 2017 (r313601)
@@ -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
More information about the svn-src-stable
mailing list