svn commit: r313616 - stable/10/lib/libmp

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


Author: ngie
Date: Sat Feb 11 06:51:09 2017
New Revision: 313616
URL: https://svnweb.freebsd.org/changeset/base/313616

Log:
  MFC r312494:
  
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This simplifies pathing in make/displayed output

Modified:
  stable/10/lib/libmp/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libmp/Makefile
==============================================================================
--- stable/10/lib/libmp/Makefile	Sat Feb 11 06:50:25 2017	(r313615)
+++ stable/10/lib/libmp/Makefile	Sat Feb 11 06:51:09 2017	(r313616)
@@ -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"


More information about the svn-src-all mailing list