svn commit: r312497 - head/lib/libmagic

Ngie Cooper ngie at FreeBSD.org
Fri Jan 20 04:45:11 UTC 2017


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

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/libmagic/Makefile

Modified: head/lib/libmagic/Makefile
==============================================================================
--- head/lib/libmagic/Makefile	Fri Jan 20 04:43:21 2017	(r312496)
+++ head/lib/libmagic/Makefile	Fri Jan 20 04:45:09 2017	(r312497)
@@ -2,7 +2,7 @@
 # Copyright (c) David E. O'Brien, 2000-2004, 2006, 2009
 
 PACKAGE=lib${LIB}
-CONTRDIR=	${.CURDIR}/../../contrib/file
+CONTRDIR=	${SRCTOP}/contrib/file
 .PATH: ${CONTRDIR}/src
 .PATH: ${CONTRDIR}/doc
 


More information about the svn-src-head mailing list