svn commit: r323543 - head/sys/modules

Sean Bruno sbruno at FreeBSD.org
Wed Sep 13 15:17:37 UTC 2017


Author: sbruno
Date: Wed Sep 13 15:17:35 2017
New Revision: 323543
URL: https://svnweb.freebsd.org/changeset/base/323543

Log:
  Don't (try to) build lio(4) if the SOURCELESS_UCODE is set.
  
  Submitted by:	Fabien Keil <fk at fabiankeil.de>

Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Wed Sep 13 14:30:30 2017	(r323542)
+++ head/sys/modules/Makefile	Wed Sep 13 15:17:35 2017	(r323543)
@@ -711,7 +711,9 @@ _ixl=		ixl
 _ixlv=		ixlv
 _linux64=	linux64
 _linux_common=	linux_common
+.if ${MK_SOURCELESS_UCODE} != "no"
 _lio=		lio
+.endif
 _ntb=		ntb
 _pms=		pms
 _qlxge=		qlxge


More information about the svn-src-all mailing list