Date: Fri, 20 Jan 2017 04:42:11 +0000 (UTC) From: Ngie Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r312494 - head/lib/libmp Message-ID: <201701200442.v0K4gBDw029169@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ngie Date: Fri Jan 20 04:42:11 2017 New Revision: 312494 URL: https://svnweb.freebsd.org/changeset/base/312494 Log: 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 Modified: head/lib/libmp/Makefile Modified: head/lib/libmp/Makefile ============================================================================== --- head/lib/libmp/Makefile Fri Jan 20 04:41:53 2017 (r312493) +++ head/lib/libmp/Makefile Fri Jan 20 04:42:11 2017 (r312494) @@ -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"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701200442.v0K4gBDw029169>