From 408ab1bd658de61e1d46aed35222daa3c199bf2f Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 26 Jun 2018 19:13:49 +0000 Subject: [PATCH] Correct linprocfs/linsysfs arch check in r335672 Pointy hat to: emaste --- sys/modules/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index aefbe72ac6e..7287bf6ec89 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -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