svn commit: r312479 - head/lib/libsmutil

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


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

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

Modified: head/lib/libsmutil/Makefile
==============================================================================
--- head/lib/libsmutil/Makefile	Fri Jan 20 04:34:01 2017	(r312478)
+++ head/lib/libsmutil/Makefile	Fri Jan 20 04:34:34 2017	(r312479)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PACKAGE=lib${LIB}
-SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
+SENDMAIL_DIR=${SRCTOP}/contrib/sendmail
 .PATH:	${SENDMAIL_DIR}/libsmutil
 
 CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I.


More information about the svn-src-head mailing list