svn commit: r312501 - head/lib/libcom_err

Ngie Cooper ngie at FreeBSD.org
Fri Jan 20 04:51:38 UTC 2017


Author: ngie
Date: Fri Jan 20 04:51:36 2017
New Revision: 312501
URL: https://svnweb.freebsd.org/changeset/base/312501

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/libcom_err/Makefile

Modified: head/lib/libcom_err/Makefile
==============================================================================
--- head/lib/libcom_err/Makefile	Fri Jan 20 04:50:46 2017	(r312500)
+++ head/lib/libcom_err/Makefile	Fri Jan 20 04:51:36 2017	(r312501)
@@ -5,7 +5,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