svn commit: r291130 - head/sys/modules

Andrew Turner andrew at FreeBSD.org
Sat Nov 21 12:53:46 UTC 2015


Author: andrew
Date: Sat Nov 21 12:53:44 2015
New Revision: 291130
URL: https://svnweb.freebsd.org/changeset/base/291130

Log:
  Fix a logic inversion, we should build dtrace on armv6, not on arm and
  armeb.

Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Sat Nov 21 11:06:20 2015	(r291129)
+++ head/sys/modules/Makefile	Sat Nov 21 12:53:44 2015	(r291130)
@@ -403,7 +403,7 @@ _autofs=	autofs
 .endif
 
 .if ${MK_CDDL} != "no" || defined(ALL_MODULES)
-.if (${MACHINE_CPUARCH} != "arm" || ${MACHINE_ARCH:Marmv6*} == "") && \
+.if (${MACHINE_CPUARCH} != "arm" || ${MACHINE_ARCH:Marmv6*} != "") && \
 	${MACHINE_CPUARCH} != "mips" && \
 	${MACHINE_CPUARCH} != "sparc64"
 SUBDIR+=	dtrace


More information about the svn-src-all mailing list