From: George Sapkin Date: Mon, 11 May 2026 15:50:35 +0000 (+0300) Subject: libucontext: add version check override X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=f596c128854799686b74141455a8ac47870fdbd6;p=openwrt-packages.git libucontext: add version check override Skip version checks as none of the executables seem to report their versions. Signed-off-by: George Sapkin --- diff --git a/libs/libucontext/test-version.sh b/libs/libucontext/test-version.sh new file mode 100755 index 000000000..34a7d119c --- /dev/null +++ b/libs/libucontext/test-version.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +# shellckeck shell=busybox + +case "$PKG_NAME" in +libucontext|\ +libucontext-tests) + exit 0 + ;; + +*) + echo "Untested package: $PKG_NAME" >&2 + exit 1 + ;; +esac