diff options
author | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-10-26 18:54:52 +0000 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-10-26 18:54:52 +0000 |
commit | b64206c6e9c5f450ad714a55f83464d969379dd3 (patch) | |
tree | 449d0d6a46f90e0254cbeda649d877eeab49d5db /community/zabbix/APKBUILD | |
parent | fe762f8b14762e25f0eeb9ecb7ff3a44b55e53fa (diff) | |
download | aports-b64206c6e9c5f450ad714a55f83464d969379dd3.tar.bz2 aports-b64206c6e9c5f450ad714a55f83464d969379dd3.tar.xz |
community/zabbix: disable agent2 on armv7/armhf
The agent fails to build on these arches
Diffstat (limited to 'community/zabbix/APKBUILD')
-rw-r--r-- | community/zabbix/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/zabbix/APKBUILD b/community/zabbix/APKBUILD index 4a289e5268..13cf27b3af 100644 --- a/community/zabbix/APKBUILD +++ b/community/zabbix/APKBUILD @@ -42,7 +42,7 @@ source="https://downloads.sourceforge.net/zabbix/$pkgname-$pkgver.tar.gz # Agent2 does not build on x86 atm case $CARCH in -x86) +x86|armv7|armhf) _build_agent2=false;; *) subpackages="$subpackages $pkgname-agent2 $pkgname-agent2-openrc:agent2_openrc" |