svn commit: r313586 - stable/10/lib/libblocksruntime

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 05:56:50 UTC 2017


Author: ngie
Date: Sat Feb 11 05:56:48 2017
New Revision: 313586
URL: https://svnweb.freebsd.org/changeset/base/313586

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

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

Modified: stable/10/lib/libblocksruntime/Makefile
==============================================================================
--- stable/10/lib/libblocksruntime/Makefile	Sat Feb 11 05:55:25 2017	(r313585)
+++ stable/10/lib/libblocksruntime/Makefile	Sat Feb 11 05:56:48 2017	(r313586)
@@ -5,7 +5,7 @@ SHLIB_MAJOR=0
 CFLAGS+=-I${.CURDIR}
 WARNS?=	2
 
-.PATH: ${.CURDIR}/../../contrib/compiler-rt/BlocksRuntime
+.PATH: ${SRCTOP}/contrib/compiler-rt/BlocksRuntime
 
 INCS=	Block.h Block_private.h
 SRCS=	data.c runtime.c


More information about the svn-src-stable-10 mailing list