svn commit: r464144 - head/sysutils/hal

Mark Linimon linimon at FreeBSD.org
Sun Mar 11 06:10:22 UTC 2018


Author: linimon
Date: Sun Mar 11 06:10:21 2018
New Revision: 464144
URL: https://svnweb.freebsd.org/changeset/ports/464144

Log:
  Clean up ARCH statement.
  
  ia64 is no longer supported.  In addition, ARCH values do not need to
  be quoted; and per portlint, they ought to be sorted.
  
  PR:		223983
  Approved by:	gnome (maintainer timeout)

Modified:
  head/sysutils/hal/Makefile

Modified: head/sysutils/hal/Makefile
==============================================================================
--- head/sysutils/hal/Makefile	Sun Mar 11 06:06:57 2018	(r464143)
+++ head/sysutils/hal/Makefile	Sun Mar 11 06:10:21 2018	(r464144)
@@ -70,7 +70,7 @@ FIXED_MOUNTPOINTS_EXTRA_PATCHES=	${FILESDIR}/extra-pat
 
 .include <bsd.port.pre.mk>
 
-.if (${ARCH}=="i386" || ${ARCH}=="amd64" || ${ARCH}=="ia64")
+.if ${ARCH} == amd64 || ${ARCH} == i386
 RUN_DEPENDS+=	dmidecode:sysutils/dmidecode
 .endif
 


More information about the svn-ports-all mailing list