diff options
author | ngie <ngie@FreeBSD.org> | 2017-02-11 05:43:34 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-02-11 05:43:34 +0000 |
commit | de3c8a8393e57cee9c79557bf110f789e3e1d2a7 (patch) | |
tree | 26e6e7ddb23d2f4c736305b959cf10600832ac91 /lib | |
parent | a3e502df16f5e65c2c7a85cf7914ad1b1a6b7fa3 (diff) | |
download | FreeBSD-src-de3c8a8393e57cee9c79557bf110f789e3e1d2a7.zip FreeBSD-src-de3c8a8393e57cee9c79557bf110f789e3e1d2a7.tar.gz |
MFC r312453:
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpam/libpam/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpam/libpam/Makefile b/lib/libpam/libpam/Makefile index cfbe480..8f11ac2 100644 --- a/lib/libpam/libpam/Makefile +++ b/lib/libpam/libpam/Makefile @@ -35,7 +35,7 @@ # # $FreeBSD$ -OPENPAM= ${.CURDIR}/../../../contrib/openpam +OPENPAM= ${SRCTOP}/contrib/openpam .PATH: ${OPENPAM}/include ${OPENPAM}/lib/libpam ${OPENPAM}/doc/man LIB= pam |