mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This simplifies pathing in make/displayed output. MFC after: 1 week Sponsored by: Dell EMC Isilon
This commit is contained in:
parent
c3f658c181
commit
7b8810a816
1 changed files with 2 additions and 3 deletions
|
|
@ -2,9 +2,8 @@
|
|||
|
||||
.include <src.opts.mk>
|
||||
|
||||
RPCDIR= ${.CURDIR}/../../include/rpcsvc
|
||||
.PATH: ${RPCDIR} \
|
||||
${.CURDIR}/common
|
||||
RPCDIR= ${SRCTOP}/include/rpcsvc
|
||||
.PATH: ${RPCDIR} ${.CURDIR}/common
|
||||
|
||||
PROG= ypserv
|
||||
MAN= ypserv.8 ypinit.8
|
||||
|
|
|
|||
Loading…
Reference in a new issue