svn commit: r322682 - head/sys/modules

Ed Maste emaste at FreeBSD.org
Sat Aug 19 00:45:30 UTC 2017


Author: emaste
Date: Sat Aug 19 00:45:29 2017
New Revision: 322682
URL: https://svnweb.freebsd.org/changeset/base/322682

Log:
  sys/modules: don't build bxe if the user objects to sourceless ucode
  
  PR:		204747
  Submitted by:	Fabian Keil
  Obtained from:	ElectroBSD
  MFC after:	1 week

Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Sat Aug 19 00:40:04 2017	(r322681)
+++ head/sys/modules/Makefile	Sat Aug 19 00:45:29 2017	(r322682)
@@ -568,7 +568,9 @@ _an=		an
 _aout=		aout
 _bios=		bios
 _bktr=		bktr
+.if ${MK_SOURCELESS_UCODE} != "no"
 _bxe=		bxe
+.endif
 _cardbus=	cardbus
 _cbb=		cbb
 _cpuctl=	cpuctl


More information about the svn-src-head mailing list