diff options
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index db6d446f065..c3b82b2daf5 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1224,6 +1224,9 @@ USE_SUBMAKE= yes .if exists(${MASTERDIR}/Makefile.local) .include "${MASTERDIR}/Makefile.local" USE_SUBMAKE= yes +.elif ${MASTERDIR} != ${.CURDIR} && exists(${.CURDIR}/Makefile.local) +.include "${.CURDIR}/Makefile.local" +USE_SUBMAKE= yes .endif .for _CATEGORY in ${CATEGORIES} |