svn commit: r335218 - head

Bryan Drewery bdrewery at FreeBSD.org
Fri Jun 15 17:03:58 UTC 2018


Author: bdrewery
Date: Fri Jun 15 17:03:57 2018
New Revision: 335218
URL: https://svnweb.freebsd.org/changeset/base/335218

Log:
  libcompat: Only build libmagic build tool if MK_FILE is yes.
  
  Sponsored by:	Dell EMC

Modified:
  head/Makefile.libcompat

Modified: head/Makefile.libcompat
==============================================================================
--- head/Makefile.libcompat	Fri Jun 15 17:03:49 2018	(r335217)
+++ head/Makefile.libcompat	Fri Jun 15 17:03:57 2018	(r335218)
@@ -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}" \


More information about the svn-src-all mailing list