]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/bsd.port.subdir.mk
There is no Python in the FreeBSD base system
[FreeBSD/FreeBSD.git] / share / mk / bsd.port.subdir.mk
1 # $FreeBSD$
2
3 .if !defined(PORTSDIR)
4 # Autodetect if the command is being run in a ports tree that's not rooted
5 # in the default /usr/ports.  The ../../.. case is in case ports ever grows
6 # a third level.
7 .for RELPATH in . .. ../.. ../../..
8 .if !defined(_PORTSDIR) && exists(${.CURDIR}/${RELPATH}/Mk/bsd.port.mk)
9 _PORTSDIR=      ${.CURDIR}/${RELPATH}
10 .endif
11 .endfor
12 _PORTSDIR?=     /usr/ports
13 PORTSDIR!=      realpath ${_PORTSDIR}
14 .endif
15
16 BSDPORTSUBDIRMK?=       ${PORTSDIR}/Mk/bsd.port.subdir.mk
17
18 .include "${BSDPORTSUBDIRMK}"