diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2017-03-04 11:38:03 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2017-03-04 11:38:03 +0000 |
commit | 64a0982bee3db2236df43357e70ce8dddbc21d48 (patch) | |
tree | 76664a67496ac3cd9e3d5d272a5a6e430068848a /usr.sbin/autofs | |
parent | b71fb1a4aa198495970831c748fa2d132621fe3d (diff) |
usr.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=314659
Diffstat (limited to 'usr.sbin/autofs')
-rw-r--r-- | usr.sbin/autofs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/autofs/Makefile b/usr.sbin/autofs/Makefile index cc13bccb54eb..760ec561ba6b 100644 --- a/usr.sbin/autofs/Makefile +++ b/usr.sbin/autofs/Makefile @@ -13,14 +13,14 @@ SRCS+= popen.c SRCS+= token.l CFLAGS+=-I${.CURDIR} -CFLAGS+=-I${.CURDIR}/../../sys/fs/autofs +CFLAGS+=-I${SRCTOP}/sys/fs/autofs MAN= automount.8 automountd.8 autounmountd.8 auto_master.5 LIBADD= util # Needed for getmntopts.c -MOUNT= ${.CURDIR}/../../sbin/mount +MOUNT= ${SRCTOP}/sbin/mount CFLAGS+=-I${MOUNT} WARNS= 6 |