Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 Jun 2018 19:13:49 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r335676 - head/sys/modules
Message-ID:  <201806261913.w5QJDnLr008529@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806261913.w5QJDnLr008529>