mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-29 04:21:26 +01:00
5a4b548ab2
There's no need to support fmake anymore. Always assume we can use bmake's :tA modifier. The ports tree hasn't supported fmake in about a decade anyway. Simplify here. Sponsored by: Netflix Reviewed by: brooks, emaste Pull Request: https://github.com/freebsd/freebsd-src/pull/980
28 lines
698 B
Makefile
28 lines
698 B
Makefile
|
|
.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= ${_PORTSDIR:tA}
|
|
.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}"
|