diff options
author | ngie <ngie@FreeBSD.org> | 2017-02-11 06:27:42 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-02-11 06:27:42 +0000 |
commit | 868f996837a7432d010683c91c937fddd020e19c (patch) | |
tree | fcbc6df60fc0daae40b716d6f092fe4192c4fdad /lib/libthread_db | |
parent | b4ae035355742f3d194d46ec22685074543eb601 (diff) | |
download | FreeBSD-src-868f996837a7432d010683c91c937fddd020e19c.zip FreeBSD-src-868f996837a7432d010683c91c937fddd020e19c.tar.gz |
MFC r312468:
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output
Diffstat (limited to 'lib/libthread_db')
-rw-r--r-- | lib/libthread_db/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthread_db/Makefile b/lib/libthread_db/Makefile index b612f4f..b5e18747 100644 --- a/lib/libthread_db/Makefile +++ b/lib/libthread_db/Makefile @@ -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. |