diff options
author | ngie <ngie@FreeBSD.org> | 2017-02-11 06:37:24 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-02-11 06:37:24 +0000 |
commit | 428cab406e0dfc3e798fe8e6f25987f601bfb871 (patch) | |
tree | 12ba22d6f390ff1725c2a2509b70b6e87fbe1eb8 /lib | |
parent | 07d65f669de070647faca244b997cc1daccfbec9 (diff) | |
download | FreeBSD-src-428cab406e0dfc3e798fe8e6f25987f601bfb871.zip FreeBSD-src-428cab406e0dfc3e798fe8e6f25987f601bfb871.tar.gz |
MFC r312477:
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libstdthreads/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libstdthreads/Makefile b/lib/libstdthreads/Makefile index 544eeb0..d2eed8a 100644 --- a/lib/libstdthreads/Makefile +++ b/lib/libstdthreads/Makefile @@ -35,7 +35,7 @@ MLINKS= thrd_create.3 call_once.3 \ DPADD= ${LIBPTHREAD} LDADD= -lpthread -VERSION_DEF= ${.CURDIR}/../libc/Versions.def +VERSION_DEF= ${SRCTOP}/lib/libc/Versions.def SYMBOL_MAPS= ${.CURDIR}/Symbol.map .include <bsd.lib.mk> |