svn commit: r313622 - stable/10/lib/libcom_err

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


Author: ngie
Date: Sat Feb 11 06:58:24 2017
New Revision: 313622
URL: https://svnweb.freebsd.org/changeset/base/313622

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

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

Modified: stable/10/lib/libcom_err/Makefile
==============================================================================
--- stable/10/lib/libcom_err/Makefile	Sat Feb 11 06:57:22 2017	(r313621)
+++ stable/10/lib/libcom_err/Makefile	Sat Feb 11 06:58:24 2017	(r313622)
@@ -4,7 +4,7 @@ LIB=	com_err
 SRCS=	com_err.c error.c
 INCS=	${COM_ERRDIR}/com_err.h ${COM_ERRDIR}/com_right.h
 MAN=	com_err.3
-COM_ERRDIR=	${.CURDIR}/../../contrib/com_err
+COM_ERRDIR=	${SRCTOP}/contrib/com_err
 CFLAGS+=	-I${COM_ERRDIR}
 
 LDFLAGS=	-Wl,--no-undefined


More information about the svn-src-all mailing list