summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2017-02-11 06:44:16 +0000
committerngie <ngie@FreeBSD.org>2017-02-11 06:44:16 +0000
commit7a9fa85f80243fcc703debb436c7302e6b60ddea (patch)
treea7de1d1bb6eb4b7841784f91e465d16a705991e3
parent41afbeb690188297177d2e296cfe6606be7982d4 (diff)
downloadFreeBSD-src-7a9fa85f80243fcc703debb436c7302e6b60ddea.zip
FreeBSD-src-7a9fa85f80243fcc703debb436c7302e6b60ddea.tar.gz
MFC r312486:
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones This implifies pathing in make/displayed output
-rw-r--r--lib/librpcsec_gss/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/librpcsec_gss/Makefile b/lib/librpcsec_gss/Makefile
index cc14a7b..223b684 100644
--- a/lib/librpcsec_gss/Makefile
+++ b/lib/librpcsec_gss/Makefile
@@ -8,11 +8,11 @@ SRCS+= rpcsec_gss.c rpcsec_gss_prot.c rpcsec_gss_conf.c rpcsec_gss_misc.c \
DPADD+= ${LIBGSSAPI}
LDADD+= -lgssapi
-VERSION_DEF= ${.CURDIR}/../libc/Versions.def
+VERSION_DEF= ${SRCTOP}/lib/libc/Versions.def
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
-CFLAGS+= -I${.CURDIR}/../../include
-CFLAGS+= -I${.CURDIR}/../../libc_rpc
+CFLAGS+= -I${SRCTOP}/include
+CFLAGS+= -I${SRCTOP}/lib/libc_rpc
NO_PROFILE=
MAN= rpcsec_gss.3
OpenPOWER on IntegriCloud