svn commit: r516647 - head/sysutils/hpacucli

Mathieu Arnold mat at FreeBSD.org
Mon Nov 4 14:47:08 UTC 2019


Author: mat
Date: Mon Nov  4 14:47:07 2019
New Revision: 516647
URL: https://svnweb.freebsd.org/changeset/ports/516647

Log:
  Avoir silly warning messages on non supported archs.
  
  Warning: sysutils/hpacucli dependency on misc/compat4x has wrong PKGNAME of 'compat4x-i386' but should be 'compat4x-aarch64'
  
  Reported by:	emaste

Modified:
  head/sysutils/hpacucli/Makefile   (contents, props changed)

Modified: head/sysutils/hpacucli/Makefile
==============================================================================
--- head/sysutils/hpacucli/Makefile	Mon Nov  4 14:20:24 2019	(r516646)
+++ head/sysutils/hpacucli/Makefile	Mon Nov  4 14:47:07 2019	(r516647)
@@ -14,7 +14,9 @@ ONLY_FOR_ARCHS=		amd64 i386
 ONLY_FOR_ARCHS_REASON=	relies on compatXx features that are x86-specific
 
 RUN_DEPENDS=	compat4x-i386>0:misc/compat4x \
-		compat5x-${ARCH}>0:misc/compat5x
+		${RUN_DEPENDS_${ARCH}}
+RUN_DEPENDS_i386=	compat5x-i386>0:misc/compat5x
+RUN_DEPENDS_amd64=	compat5x-amd64>0:misc/compat5x
 
 USES=		tar:bzip2
 NO_BUILD=	yes


More information about the svn-ports-all mailing list