svn commit: r456045 - head/sysutils/lscpu

Alexey Dokuchaev danfe at FreeBSD.org
Mon Dec 11 15:26:25 UTC 2017


Author: danfe
Date: Mon Dec 11 15:26:23 2017
New Revision: 456045
URL: https://svnweb.freebsd.org/changeset/ports/456045

Log:
  Add ONLY_FOR_ARCHS_REASON statement: while it attempts to query generic CPU
  information using sysctl(3) CTL_HW* identifiers, it does not properly guard
  x86-specific code paths.
  
  Requested by:	mat

Modified:
  head/sysutils/lscpu/Makefile

Modified: head/sysutils/lscpu/Makefile
==============================================================================
--- head/sysutils/lscpu/Makefile	Mon Dec 11 14:53:44 2017	(r456044)
+++ head/sysutils/lscpu/Makefile	Mon Dec 11 15:26:23 2017	(r456045)
@@ -11,6 +11,7 @@ COMMENT=	Display information about the CPU architectur
 LICENSE=	BSD3CLAUSE
 
 ONLY_FOR_ARCHS=	amd64 i386
+ONLY_FOR_ARCHS_REASON=	unconditionally invokes x86-specific code
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	NanXiao


More information about the svn-ports-head mailing list