svn commit: r313591 - stable/10/lib/libbz2

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 06:19:26 UTC 2017


Author: ngie
Date: Sat Feb 11 06:19:25 2017
New Revision: 313591
URL: https://svnweb.freebsd.org/changeset/base/313591

Log:
  MFC r312463:
  
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This implifies pathing in make/displayed output

Modified:
  stable/10/lib/libbz2/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libbz2/Makefile
==============================================================================
--- stable/10/lib/libbz2/Makefile	Sat Feb 11 06:17:10 2017	(r313590)
+++ stable/10/lib/libbz2/Makefile	Sat Feb 11 06:19:25 2017	(r313591)
@@ -1,6 +1,6 @@
 # $FreeBSD$
 
-BZ2DIR=	${.CURDIR}/../../contrib/bzip2
+BZ2DIR=	${SRCTOP}/contrib/bzip2
 .PATH: ${BZ2DIR}
 
 LIB=		bz2


More information about the svn-src-stable-10 mailing list