libcompat: Only build libmagic build tool if MK_FILE is yes.

Sponsored by:	Dell EMC
This commit is contained in:
Bryan Drewery 2018-06-15 17:03:57 +00:00
parent 12899612dd
commit 127b666cd1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=335218

View file

@ -155,6 +155,9 @@ _LC_INCDIRS= \
lib/ncurses/ncursesw \
${_LC_LIBDIRS.yes}
.if ${MK_FILE} != "no"
_libmagic= lib/libmagic
.endif
.if ${MK_PMC} != "no" && ${TARGET_ARCH} == "amd64"
_jevents= lib/libpmc/pmu-events
.endif
@ -197,7 +200,7 @@ build${libcompat}: .PHONY
DIRPRFX=${_dir}/ ${_t}
.endfor
.endfor
.for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic ${_jevents}
.for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw ${_libmagic} ${_jevents}
${_+_}cd ${.CURDIR}/${_dir}; \
WORLDTMP=${WORLDTMP} \
MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" \