svn commit: r312486 - head/lib/librpcsec_gss
Ngie Cooper
ngie at FreeBSD.org
Fri Jan 20 04:36:49 UTC 2017
Author: ngie
Date: Fri Jan 20 04:36:48 2017
New Revision: 312486
URL: https://svnweb.freebsd.org/changeset/base/312486
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/librpcsec_gss/Makefile
Modified: head/lib/librpcsec_gss/Makefile
==============================================================================
--- head/lib/librpcsec_gss/Makefile Fri Jan 20 04:36:28 2017 (r312485)
+++ head/lib/librpcsec_gss/Makefile Fri Jan 20 04:36:48 2017 (r312486)
@@ -8,11 +8,11 @@ SRCS+= rpcsec_gss.c rpcsec_gss_prot.c rp
LIBADD= gssapi
-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
MK_PROFILE= no
MAN= rpcsec_gss.3
More information about the svn-src-all
mailing list