Date: Mon, 4 Nov 2019 14:47:08 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r516647 - head/sysutils/hpacucli Message-ID: <201911041447.xA4El88A007187@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911041447.xA4El88A007187>