diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2019-11-04 14:47:07 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2019-11-04 14:47:07 +0000 |
commit | 98725acdb42434c2d354d552d61088c8287585d6 (patch) | |
tree | e37c260026866c42e1dce77c4aea9ee926acf986 /sysutils/hpacucli | |
parent | 629d55f11dd6c93ea5ae7d24910c639e0e1c30d7 (diff) | |
download | freebsd-ports-98725acdb42434c2d354d552d61088c8287585d6.zip |
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
Diffstat (limited to 'sysutils/hpacucli')
-rw-r--r-- | sysutils/hpacucli/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysutils/hpacucli/Makefile b/sysutils/hpacucli/Makefile index cddd3d0fb3ef..632d0fed525c 100644 --- a/sysutils/hpacucli/Makefile +++ b/sysutils/hpacucli/Makefile @@ -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 |