svn commit: r313611 - stable/10/lib/librpcsec_gss
Ngie Cooper
ngie at FreeBSD.org
Sat Feb 11 06:44:18 UTC 2017
Author: ngie
Date: Sat Feb 11 06:44:16 2017
New Revision: 313611
URL: https://svnweb.freebsd.org/changeset/base/313611
Log:
MFC r312486:
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output
Modified:
stable/10/lib/librpcsec_gss/Makefile
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/lib/librpcsec_gss/Makefile
==============================================================================
--- stable/10/lib/librpcsec_gss/Makefile Sat Feb 11 06:42:56 2017 (r313610)
+++ stable/10/lib/librpcsec_gss/Makefile Sat Feb 11 06:44:16 2017 (r313611)
@@ -8,11 +8,11 @@ SRCS+= rpcsec_gss.c rpcsec_gss_prot.c rp
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
More information about the svn-src-stable-10
mailing list