svn commit: r335676 - head/sys/modules
Ed Maste
emaste at FreeBSD.org
Tue Jun 26 19:13:50 UTC 2018
Author: emaste
Date: Tue Jun 26 19:13:49 2018
New Revision: 335676
URL: https://svnweb.freebsd.org/changeset/base/335676
Log:
Correct linprocfs/linsysfs arch check in r335672
Pointy hat to: emaste
Modified:
head/sys/modules/Makefile
Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile Tue Jun 26 18:53:52 2018 (r335675)
+++ head/sys/modules/Makefile Tue Jun 26 19:13:49 2018 (r335676)
@@ -491,7 +491,7 @@ SUBDIR+= iscsi
SUBDIR+= iscsi_initiator
.endif
-.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} != "amd64" || \
+.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "amd64" || \
${MACHINE_CPUARCH} == "i386"
SUBDIR+= linprocfs
SUBDIR+= linsysfs
More information about the svn-src-all
mailing list