Fix build from stable/10 with fmake.
This was broken in r301888. fmake does not look in share/mk by default and thus does not yet have MK_META_MODE set with default. Pointyhat to: bdrewery Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
0e069bceea
commit
b6d5c4f594
2
Makefile
2
Makefile
@ -219,7 +219,7 @@ _CAN_USE_META_MODE?= yes
|
||||
.if !defined(_CAN_USE_META_MODE)
|
||||
_MAKE+= MK_META_MODE=no
|
||||
.unexport META_MODE
|
||||
.elif ${MK_META_MODE} == "yes"
|
||||
.elif defined(MK_META_MODE) && ${MK_META_MODE} == "yes"
|
||||
.if !exists(/dev/filemon) && !defined(NO_FILEMON) && !make(showconfig)
|
||||
# Require filemon be loaded to provide a working incremental build
|
||||
.error ${.newline}ERROR: The filemon module (/dev/filemon) is not loaded. \
|
||||
|
Loading…
Reference in New Issue
Block a user