svn commit: r312481 - head/lib/libsmdb

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


Author: ngie
Date: Fri Jan 20 04:35:18 2017
New Revision: 312481
URL: https://svnweb.freebsd.org/changeset/base/312481

Log:
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This implifies pathing in make/displayed output
  
  MFC after:    3 weeks
  Sponsored by: Dell EMC Isilon

Modified:
  head/lib/libsmdb/Makefile

Modified: head/lib/libsmdb/Makefile
==============================================================================
--- head/lib/libsmdb/Makefile	Fri Jan 20 04:35:00 2017	(r312480)
+++ head/lib/libsmdb/Makefile	Fri Jan 20 04:35:18 2017	(r312481)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PACKAGE=lib${LIB}
-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-all mailing list