svn commit: r295645 - head/sys/conf

Bryan Drewery bdrewery at FreeBSD.org
Tue Feb 16 02:14:14 UTC 2016


Author: bdrewery
Date: Tue Feb 16 02:14:12 2016
New Revision: 295645
URL: https://svnweb.freebsd.org/changeset/base/295645

Log:
  Use built-in :tA here rather than realpath(1).
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/sys/conf/kern.post.mk

Modified: head/sys/conf/kern.post.mk
==============================================================================
--- head/sys/conf/kern.post.mk	Tue Feb 16 02:14:09 2016	(r295644)
+++ head/sys/conf/kern.post.mk	Tue Feb 16 02:14:12 2016	(r295645)
@@ -50,7 +50,7 @@ modules-${target}:
 LOCALBASE?=	/usr/local
 # SRC_BASE is how the ports tree refers to the location of the base source files
 .if !defined(SRC_BASE)
-SRC_BASE!=	realpath "${SYSDIR:H}/"
+SRC_BASE=	${SYSDIR:H:tA}
 .endif
 # OSVERSION is used by some ports to determine build options
 .if !defined(OSRELDATE)


More information about the svn-src-all mailing list