svn commit: r313628 - stable/10/lib/libexpat

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 07:03:56 UTC 2017


Author: ngie
Date: Sat Feb 11 07:03:54 2017
New Revision: 313628
URL: https://svnweb.freebsd.org/changeset/base/313628

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

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

Modified: stable/10/lib/libexpat/Makefile
==============================================================================
--- stable/10/lib/libexpat/Makefile	Sat Feb 11 07:03:10 2017	(r313627)
+++ stable/10/lib/libexpat/Makefile	Sat Feb 11 07:03:54 2017	(r313628)
@@ -1,6 +1,6 @@
 # $FreeBSD$
 
-EXPAT=		${.CURDIR}/../../contrib/expat
+EXPAT=		${SRCTOP}/contrib/expat
 
 LIB=		bsdxml
 SHLIBDIR?=	/lib


More information about the svn-src-all mailing list