svn commit: r313651 - head/lib/libc/tests/tls

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 20:14:51 UTC 2017


Author: ngie
Date: Sat Feb 11 20:14:50 2017
New Revision: 313651
URL: https://svnweb.freebsd.org/changeset/base/313651

Log:
  Manipulate OBJDIR with :H when referencing dso directory
  
  This reduces path lengths, etc in memory with make by a minimal value
  
  Sponsored by:	Dell EMC Isilon

Modified:
  head/lib/libc/tests/tls/Makefile

Modified: head/lib/libc/tests/tls/Makefile
==============================================================================
--- head/lib/libc/tests/tls/Makefile	Sat Feb 11 20:12:54 2017	(r313650)
+++ head/lib/libc/tests/tls/Makefile	Sat Feb 11 20:14:50 2017	(r313651)
@@ -16,7 +16,7 @@ NETBSD_ATF_TESTS_C+=	tls_dynamic_test
 
 .include "../Makefile.netbsd-tests"
 
-DSODIR=		${.OBJDIR}/../tls_dso
+DSODIR=		${.OBJDIR:H}/tls_dso
 
 LIBADD.tls_static_test+=	pthread
 LDFLAGS.tls_static_test+=	-static


More information about the svn-src-all mailing list