Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Feb 2017 06:51:09 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r313616 - stable/10/lib/libmp
Message-ID:  <201702110651.v1B6p9k2008531@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702110651.v1B6p9k2008531>