svn commit: r312508 - head/lib/libexpat

Ngie Cooper ngie at FreeBSD.org
Fri Jan 20 04:53:46 UTC 2017


Author: ngie
Date: Fri Jan 20 04:53:45 2017
New Revision: 312508
URL: https://svnweb.freebsd.org/changeset/base/312508

Log:
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This simplifies pathing in make/displayed output
  
  MFC after:    3 weeks
  Sponsored by: Dell EMC Isilon

Modified:
  head/lib/libexpat/Makefile

Modified: head/lib/libexpat/Makefile
==============================================================================
--- head/lib/libexpat/Makefile	Fri Jan 20 04:53:40 2017	(r312507)
+++ head/lib/libexpat/Makefile	Fri Jan 20 04:53:45 2017	(r312508)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PACKAGE=lib${LIB}
-EXPAT=		${.CURDIR}/../../contrib/expat
+EXPAT=		${SRCTOP}/contrib/expat
 
 LIB=		bsdxml
 SHLIBDIR?=	/lib


More information about the svn-src-head mailing list