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
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"