diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2020-04-21 15:48:36 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2020-04-21 15:48:36 +0000 |
commit | f65a47b37fbf46a16f2c8e9fcbaf609ad6445201 (patch) | |
tree | 4fcd8b36562bd753a5ebca5f571b99034af78e15 /Mk/bsd.port.mk | |
parent | b69e21a278d52e5c16b99a7d9e14602d758f7335 (diff) | |
download | ports-f65a47b37fbf46a16f2c8e9fcbaf609ad6445201.tar.gz ports-f65a47b37fbf46a16f2c8e9fcbaf609ad6445201.zip |
Notes
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 0ce2e9833701..a9d4183eda5c 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1363,6 +1363,9 @@ PKGCOMPATDIR?= ${LOCALBASE}/lib/compat/pkg .if defined(USE_LOCAL_MK) .include "${PORTSDIR}/Mk/bsd.local.mk" .endif +.for odir in ${OVERLAYS} +.sinclude "${odir}/Mk/bsd.overlay.mk" +.endfor .if defined(USE_XORG) && (!defined(USES) || !${USES:Mxorg}) DEV_WARNING+= "Using USE_XORG alone is deprecated, please use USES=xorg" @@ -1946,6 +1949,9 @@ _FORCE_POST_PATTERNS= rmdir kldxref mkfontscale mkfontdir fc-cache \ .if defined(USE_LOCAL_MK) .include "${PORTSDIR}/Mk/bsd.local.mk" .endif +.for odir in ${OVERLAYS} +.sinclude "${odir}/Mk/bsd.overlay.mk" +.endfor .if defined(USE_XORG) && (!defined(USES) || ( defined(USES) && !${USES:Mxorg} )) DEV_WARNING+= "Using USE_XORG alone is deprecated, please use USES=xorg" |