6cc777bf8b
This has the side effect of ensuring that realpath is also run for the nominal case of PORTSDIR=/usr/ports (assuming .CURDIR is a ports directory that relies on /usr/ports but is not rooted in it). This ensures that any generated PORTSDIR used is always the actual location. Submitted by: jkim (different implementation)
29 lines
717 B
Makefile
29 lines
717 B
Makefile
# $FreeBSD$
|
|
|
|
.if !defined(PORTSDIR)
|
|
# Autodetect if the command is being run in a ports tree that's not rooted
|
|
# in the default /usr/ports. The ../../.. case is in case ports ever grows
|
|
# a third level.
|
|
.for RELPATH in . .. ../.. ../../..
|
|
.if !defined(_PORTSDIR) && exists(${.CURDIR}/${RELPATH}/Mk/bsd.port.mk)
|
|
_PORTSDIR= ${.CURDIR}/${RELPATH}
|
|
.endif
|
|
.endfor
|
|
_PORTSDIR?= /usr/ports
|
|
PORTSDIR!= realpath ${_PORTSDIR}
|
|
.endif
|
|
|
|
BSDPORTMK?= ${PORTSDIR}/Mk/bsd.port.mk
|
|
|
|
# Needed to keep bsd.own.mk from reading in /etc/src.conf
|
|
# and setting MK_* variables when building ports.
|
|
_WITHOUT_SRCCONF=
|
|
|
|
# Enable CTF conversion on request.
|
|
.if defined(WITH_CTF)
|
|
.undef NO_CTF
|
|
.endif
|
|
|
|
.include <bsd.own.mk>
|
|
.include "${BSDPORTMK}"
|