Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones

This simplifies pathing in make/displayed output

MFC after:    3 weeks
Sponsored by: Dell EMC Isilon
This commit is contained in:
Enji Cooper 2017-01-20 04:42:11 +00:00
parent aa5975162b
commit ebc81ded1f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=312494

View file

@ -10,9 +10,9 @@ MAN= libmp.3
INCS= mp.h
SRCS= mpasbn.c
CFLAGS+= -I${.CURDIR}/../../crypto
CFLAGS+= -I${SRCTOP}/crypto
VERSION_DEF= ${.CURDIR}/../libc/Versions.def
VERSION_DEF= ${SRCTOP}/lib/libc/Versions.def
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
.if ${MK_TESTS} != "no"