svn commit: r312468 - head/lib/libthread_db

Ngie Cooper ngie at FreeBSD.org
Fri Jan 20 04:28:17 UTC 2017


Author: ngie
Date: Fri Jan 20 04:28:16 2017
New Revision: 312468
URL: https://svnweb.freebsd.org/changeset/base/312468

Log:
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This implifies pathing in make/displayed output
  
  MFC after:    3 weeks
  Sponsored by: Dell EMC Isilon

Modified:
  head/lib/libthread_db/Makefile

Modified: head/lib/libthread_db/Makefile
==============================================================================
--- head/lib/libthread_db/Makefile	Fri Jan 20 04:27:40 2017	(r312467)
+++ head/lib/libthread_db/Makefile	Fri Jan 20 04:28:16 2017	(r312468)
@@ -15,7 +15,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-head mailing list