diff options
author | ngie <ngie@FreeBSD.org> | 2017-05-30 04:36:11 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-05-30 04:36:11 +0000 |
commit | 14a125390688f00d4a133157780bb301092659c0 (patch) | |
tree | 77dbe3222237df472ea22e187aacd0027d625e26 /sys/modules | |
parent | 81a66d29c41081e329846fe6b4d467d2f9a761d6 (diff) | |
download | FreeBSD-src-14a125390688f00d4a133157780bb301092659c0.zip FreeBSD-src-14a125390688f00d4a133157780bb301092659c0.tar.gz |
MFC r318439:
Normalize .PATH on SRCTOP
This will help Jenkins dedupe 9 warnings between the static build and
the module build of ipsec(4).
Missed in SRCTOP conversion in r314651.
MFC with: r314651
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/ipsec/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/ipsec/Makefile b/sys/modules/ipsec/Makefile index d3f1811..01b92c5 100644 --- a/sys/modules/ipsec/Makefile +++ b/sys/modules/ipsec/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -.PATH: ${SRCTOP}/sys/net ${.CURDIR}/../../netipsec +.PATH: ${SRCTOP}/sys/net ${SRCTOP}/sys/netipsec KMOD= ipsec SRCS= if_ipsec.c ipsec.c ipsec_input.c ipsec_mbuf.c ipsec_mod.c \ |