diff options
author | Warner Losh <imp@FreeBSD.org> | 2017-03-12 18:59:05 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2017-03-12 18:59:05 +0000 |
commit | 484482b8ad59a8c68aaa1f0551a983c10b983a22 (patch) | |
tree | 6f074fd56221a1e2138910bd71a77d75a90fc21b | |
parent | 28d60d6a809ae75b08a2cd9ae2230eb4af87c1ad (diff) | |
download | src-484482b8ad59a8c68aaa1f0551a983c10b983a22.tar.gz src-484482b8ad59a8c68aaa1f0551a983c10b983a22.zip |
Fix two CURDIR references in comments that should be SRCTOP
references.
Differential Revision: https://reviews.freebsd.org/D9932
Sponsored by: Netflix
Silence On: arch@ (twice)
Notes
Notes:
svn path=/head/; revision=315173
-rw-r--r-- | lib/libipsec/Makefile | 2 | ||||
-rw-r--r-- | lib/libpathconv/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libipsec/Makefile b/lib/libipsec/Makefile index 460a5d79b0b4..c626830e2e9b 100644 --- a/lib/libipsec/Makefile +++ b/lib/libipsec/Makefile @@ -40,7 +40,7 @@ CFLAGS+=-DIPSEC_DEBUG -DIPSEC CFLAGS+=-DINET6 .endif -#.PATH: ${.CURDIR}/../../sys/netipsec +#.PATH: ${SRCTOP}/sys/netipsec #SRCS= pfkey.c pfkey_dump.c SRCS+= ipsec_strerror.c policy_parse.y policy_token.l SRCS+= ipsec_dump_policy.c ipsec_get_policylen.c diff --git a/lib/libpathconv/Makefile b/lib/libpathconv/Makefile index 6d7f5dce0e56..abdf127df0c8 100644 --- a/lib/libpathconv/Makefile +++ b/lib/libpathconv/Makefile @@ -10,7 +10,7 @@ INCS= pathconv.h SRCS= abs2rel.c rel2abs.c -#VERSION_DEF= ${.CURDIR}/../libc/Versions.def +#VERSION_DEF= ${SRCTOP/lib/libc/Versions.def #SYMBOL_MAPS= ${.CURDIR}/Symbol.map .if ${MK_TESTS} != "no" |