From 5ba022ecbc60d15005e65041f0560751df87f55f Mon Sep 17 00:00:00 2001 From: Sertonix Date: Sat, 4 Apr 2026 20:33:00 +0000 Subject: [PATCH] community/cri-tools: enable on armhf --- community/cri-tools/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/community/cri-tools/APKBUILD b/community/cri-tools/APKBUILD index 03d3019c30d..93738733284 100644 --- a/community/cri-tools/APKBUILD +++ b/community/cri-tools/APKBUILD @@ -5,7 +5,7 @@ pkgver=1.35.0 pkgrel=3 pkgdesc="CLI tool for Kubelet Container Runtime Interface (CRI)" url="https://github.com/kubernetes-sigs/cri-tools" -arch="all !armhf" +arch="all" license="Apache-2.0" makedepends="go" options="!check" # no check available @@ -17,7 +17,7 @@ export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}" build() { case "$CARCH" in - armv7|riscv64|s390x|x86|loongarch64) CGO_ENABLED=1 make all;; + arm*|riscv64|s390x|x86|loongarch64) CGO_ENABLED=1 make all;; *) make all;; esac }