Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Feb 2017 06:21:38 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r313592 - stable/10/lib/libc++
Message-ID:  <201702110621.v1B6Lcd8095771@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Sat Feb 11 06:21:38 2017
New Revision: 313592
URL: https://svnweb.freebsd.org/changeset/base/313592

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

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

Modified: stable/10/lib/libc++/Makefile
==============================================================================
--- stable/10/lib/libc++/Makefile	Sat Feb 11 06:19:25 2017	(r313591)
+++ stable/10/lib/libc++/Makefile	Sat Feb 11 06:21:38 2017	(r313592)
@@ -2,9 +2,9 @@
 
 .include <bsd.own.mk>
 
-LIBCXXRTDIR=	${.CURDIR}/../../contrib/libcxxrt
-HDRDIR=		${.CURDIR}/../../contrib/libc++/include
-SRCDIR=		${.CURDIR}/../../contrib/libc++/src
+LIBCXXRTDIR=	${SRCTOP}/contrib/libcxxrt
+HDRDIR=		${SRCTOP}/contrib/libc++/include
+SRCDIR=		${SRCTOP}/contrib/libc++/src
 CXXINCLUDEDIR=	${INCLUDEDIR}/c++/v${SHLIB_MAJOR}
 
 .PATH: ${SRCDIR}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702110621.v1B6Lcd8095771>