Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Feb 2017 06:33:46 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r313601 - stable/10/lib/libunbound
Message-ID:  <201702110633.v1B6Xkcj001541@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702110633.v1B6Xkcj001541>