svn commit: r325839 - head/sys/dts

Warner Losh imp at FreeBSD.org
Wed Nov 15 03:47:00 UTC 2017


Author: imp
Date: Wed Nov 15 03:46:59 2017
New Revision: 325839
URL: https://svnweb.freebsd.org/changeset/base/325839

Log:
  Fix SYSDIR path. After the move, we need to chop off a couple ../ from
  the prior definition. But a safer definition is SRCTOP/sys, so use
  that.
  
  Sponsored by: Netflix

Modified:
  head/sys/dts/Makefile.inc

Modified: head/sys/dts/Makefile.inc
==============================================================================
--- head/sys/dts/Makefile.inc	Wed Nov 15 02:24:47 2017	(r325838)
+++ head/sys/dts/Makefile.inc	Wed Nov 15 03:46:59 2017	(r325839)
@@ -1,6 +1,6 @@
 # $FreeBSD$
 
-SYSDIR?=${.CURDIR}/../../../..
+SYSDIR?=${SRCTOP}/sys
 
 test-dts:
 .for dts in ${DTS}


More information about the svn-src-head mailing list