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/efirt | |
parent | abe427af75e9478f8ab875b40333d594d1fb46ac (diff) |
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/efirt')
-rw-r--r-- | sys/modules/efirt/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/efirt/Makefile b/sys/modules/efirt/Makefile index 993ecdb9e888..f840bc1524bf 100644 --- a/sys/modules/efirt/Makefile +++ b/sys/modules/efirt/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../${MACHINE}/${MACHINE} -.PATH: ${.CURDIR}/../../dev/efidev +.PATH: ${SRCTOP}/sys/${MACHINE}/${MACHINE} +.PATH: ${SRCTOP}/sys/dev/efidev KMOD= efirt SRCS= efirt.c efidev.c |