diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2017-03-04 11:33:01 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2017-03-04 11:33:01 +0000 |
commit | 22289a8c3d45efcf5671750a0ceffb1296455bab (patch) | |
tree | 94fe5f475bf0dead0e972df66b3e4cad0afd6746 /sbin/etherswitchcfg/Makefile | |
parent | caf42d812634461f3196797f55f320c03c49b019 (diff) | |
download | src-22289a8c3d45efcf5671750a0ceffb1296455bab.tar.gz src-22289a8c3d45efcf5671750a0ceffb1296455bab.zip |
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/etherswitchcfg/Makefile')
-rw-r--r-- | sbin/etherswitchcfg/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/etherswitchcfg/Makefile b/sbin/etherswitchcfg/Makefile index 547a27296bd9..6ef9f5f8a2a0 100644 --- a/sbin/etherswitchcfg/Makefile +++ b/sbin/etherswitchcfg/Makefile @@ -5,6 +5,6 @@ PACKAGE=runtime PROG= etherswitchcfg MAN= etherswitchcfg.8 SRCS= etherswitchcfg.c ifmedia.c -CFLAGS+= -I${.CURDIR}/../../sys +CFLAGS+= -I${SRCTOP}/sys .include <bsd.prog.mk> |