svn commit: r313596 - stable/10/lib/libthread_db

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 06:27:43 UTC 2017


Author: ngie
Date: Sat Feb 11 06:27:42 2017
New Revision: 313596
URL: https://svnweb.freebsd.org/changeset/base/313596

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

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

Modified: stable/10/lib/libthread_db/Makefile
==============================================================================
--- stable/10/lib/libthread_db/Makefile	Sat Feb 11 06:25:47 2017	(r313595)
+++ stable/10/lib/libthread_db/Makefile	Sat Feb 11 06:27:42 2017	(r313596)
@@ -14,7 +14,7 @@ CFLAGS+=-I. -I${.CURDIR}
 SYM_MAPS+=${.CURDIR}/Symbol.map
 
 SYMBOL_MAPS=${SYM_MAPS}
-VERSION_DEF=${.CURDIR}/../libc/Versions.def
+VERSION_DEF=${SRCTOP}/lib/libc/Versions.def
 
 # Unfortunately, clang gives an incorrect warning about alignment in
 # arch/i386/libpthread_md.c, so turn that off for now.


More information about the svn-src-all mailing list