svn commit: r303463 - head/sys/modules

Brooks Davis brooks at FreeBSD.org
Thu Jul 28 21:27:48 UTC 2016


Author: brooks
Date: Thu Jul 28 21:27:47 2016
New Revision: 303463
URL: https://svnweb.freebsd.org/changeset/base/303463

Log:
  cxgbe's firmware module fails to build on mips64 as well as mips32 so
  disable for all mips.
  
  Sponsored by:	DARPA, AFRL

Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Thu Jul 28 21:16:18 2016	(r303462)
+++ head/sys/modules/Makefile	Thu Jul 28 21:27:47 2016	(r303463)
@@ -508,7 +508,7 @@ _txp=		txp
 .endif
 
 .if ${MK_SOURCELESS_UCODE} != "no" && ${MACHINE_CPUARCH} != "arm" && \
-	${MACHINE_ARCH:C/mips(el)?/mips/} != "mips" && \
+	${MACHINE_CPUARCH} != "mips" && \
 	${MACHINE_ARCH} != "powerpc" && ${MACHINE_CPUARCH} != "riscv"
 _cxgbe=		cxgbe
 .endif


More information about the svn-src-head mailing list