svn commit: r313607 - stable/10/lib/libsmdb

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


Author: ngie
Date: Sat Feb 11 06:39:47 2017
New Revision: 313607
URL: https://svnweb.freebsd.org/changeset/base/313607

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

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

Modified: stable/10/lib/libsmdb/Makefile
==============================================================================
--- stable/10/lib/libsmdb/Makefile	Sat Feb 11 06:39:04 2017	(r313606)
+++ stable/10/lib/libsmdb/Makefile	Sat Feb 11 06:39:47 2017	(r313607)
@@ -1,6 +1,6 @@
 # $FreeBSD$
 
-SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
+SENDMAIL_DIR=${SRCTOP}/contrib/sendmail
 .PATH:	${SENDMAIL_DIR}/libsmdb
 
 CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I.


More information about the svn-src-stable-10 mailing list