svn commit: r313580 - stable/10/lib/libpam/libpam

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 05:43:35 UTC 2017


Author: ngie
Date: Sat Feb 11 05:43:34 2017
New Revision: 313580
URL: https://svnweb.freebsd.org/changeset/base/313580

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

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

Modified: stable/10/lib/libpam/libpam/Makefile
==============================================================================
--- stable/10/lib/libpam/libpam/Makefile	Sat Feb 11 05:41:53 2017	(r313579)
+++ stable/10/lib/libpam/libpam/Makefile	Sat Feb 11 05:43:34 2017	(r313580)
@@ -35,7 +35,7 @@
 #
 # $FreeBSD$
 
-OPENPAM=	${.CURDIR}/../../../contrib/openpam
+OPENPAM=	${SRCTOP}/contrib/openpam
 .PATH: ${OPENPAM}/include ${OPENPAM}/lib/libpam ${OPENPAM}/doc/man
 
 LIB=	pam


More information about the svn-src-all mailing list