diff options
author | ngie <ngie@FreeBSD.org> | 2017-02-21 02:30:26 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-02-21 02:30:26 +0000 |
commit | 79f206d212df744554ed6500e7b892c0d694a2c0 (patch) | |
tree | 072a36ced194cd2ab25c015f3f655890c9c35036 /usr.bin/svn/svnfsfs | |
parent | 8282e65df9df9413b3b92a45368768741d090f0b (diff) | |
download | FreeBSD-src-79f206d212df744554ed6500e7b892c0d694a2c0.zip FreeBSD-src-79f206d212df744554ed6500e7b892c0d694a2c0.tar.gz |
MFC r313679:
Use SRCTOP/OBJTOP relative paths where possible; use :H manipulation in lieu
of ../ elsewhere
This simplifies pathing in make/displayed output
Diffstat (limited to 'usr.bin/svn/svnfsfs')
-rw-r--r-- | usr.bin/svn/svnfsfs/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/svn/svnfsfs/Makefile b/usr.bin/svn/svnfsfs/Makefile index 67be638..2a465b6 100644 --- a/usr.bin/svn/svnfsfs/Makefile +++ b/usr.bin/svn/svnfsfs/Makefile @@ -2,7 +2,7 @@ MAN= -.include "${.CURDIR}/../Makefile.inc" +.include "${.CURDIR:H}/Makefile.inc" .PATH: ${SVNDIR}/svnfsfs @@ -10,11 +10,11 @@ PROG= svn${SVNLITE}fsfs SRCS= dump-index-cmd.c load-index-cmd.c stats-cmd.c svnfsfs.c -CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} -I${.CURDIR}/.. \ - -I${.CURDIR}/../lib/libapr \ +CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} -I${.CURDIR:H} \ + -I${.CURDIR:H}/lib/libapr \ -I${APR}/include/arch/unix \ -I${APR}/include \ - -I${.CURDIR}/../lib/libapr_util \ + -I${.CURDIR:H}/lib/libapr_util \ -I${APRU}/include/private \ -I${APRU}/include |