aboutsummaryrefslogtreecommitdiff
path: root/sbin/umount/Makefile
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2017-03-04 11:33:01 +0000
committerEnji Cooper <ngie@FreeBSD.org>2017-03-04 11:33:01 +0000
commit22289a8c3d45efcf5671750a0ceffb1296455bab (patch)
tree94fe5f475bf0dead0e972df66b3e4cad0afd6746 /sbin/umount/Makefile
parentcaf42d812634461f3196797f55f320c03c49b019 (diff)
sbin: normalize paths using SRCTOP-relative paths or :H when possible
This simplifies make logic/output MFC after: 1 month Sponsored by: Dell EMC Isilon
Notes
Notes: svn path=/head/; revision=314656
Diffstat (limited to 'sbin/umount/Makefile')
-rw-r--r--sbin/umount/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/umount/Makefile b/sbin/umount/Makefile
index cdc66b9ed808..8101322cc6ef 100644
--- a/sbin/umount/Makefile
+++ b/sbin/umount/Makefile
@@ -7,8 +7,8 @@ PROG= umount
SRCS= umount.c vfslist.c mounttab.c
MAN= umount.8
-MOUNT= ${.CURDIR}/../mount
-UMNTALL= ${.CURDIR}/../../usr.sbin/rpc.umntall
+MOUNT= ${.CURDIR:H}/mount
+UMNTALL= ${SRCTOP}/usr.sbin/rpc.umntall
CFLAGS+= -I${MOUNT} -I${UMNTALL}
.PATH: ${MOUNT} ${UMNTALL}