diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2017-03-04 10:10:17 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2017-03-04 10:10:17 +0000 |
commit | 193d9e768ba63fcfb187cfd17f461f7d41345048 (patch) | |
tree | 0bd611a14f41427d2dd6120d82a36544617899be /sys/modules/rdma | |
parent | abe427af75e9478f8ab875b40333d594d1fb46ac (diff) | |
download | src-193d9e768ba63fcfb187cfd17f461f7d41345048.tar.gz src-193d9e768ba63fcfb187cfd17f461f7d41345048.zip |
sys/modules: normalize .CURDIR-relative paths to SRCTOP
This simplifies make output/logic
Tested with: `cd sys/modules; make ALL_MODULES=` on amd64
MFC after: 1 month
Sponsored by: Dell EMC Isilon
Notes
Notes:
svn path=/head/; revision=314651
Diffstat (limited to 'sys/modules/rdma')
-rw-r--r-- | sys/modules/rdma/krping/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/modules/rdma/krping/Makefile b/sys/modules/rdma/krping/Makefile index ecc24a5f014f..9f530e0f818f 100644 --- a/sys/modules/rdma/krping/Makefile +++ b/sys/modules/rdma/krping/Makefile @@ -1,11 +1,11 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../../contrib/rdma/krping +.PATH: ${SRCTOP}/sys/contrib/rdma/krping KMOD= krping SRCS= krping.c krping_dev.c getopt.c SRCS+= bus_if.h device_if.h pci_if.h pcib_if.h vnode_if.h SRCS+= opt_sched.h opt_inet.h opt_inet6.h -CFLAGS+= -I${.CURDIR}/../../../ofed/include -CFLAGS+= -I${.CURDIR}/../../../compat/linuxkpi/common/include +CFLAGS+= -I${SRCTOP}/sys/ofed/include +CFLAGS+= -I${SRCTOP}/sys/compat/linuxkpi/common/include .include <bsd.kmod.mk> |