From: George Sapkin Date: Sun, 24 May 2026 20:19:03 +0000 (+0300) Subject: libseccomp: add version check override X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=46c786c033e306149a48f5ff089c8d2ed0a0a2ad;p=openwrt-packages.git libseccomp: 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/libseccomp/test-version.sh b/libs/libseccomp/test-version.sh new file mode 100755 index 000000000..8226ba9ee --- /dev/null +++ b/libs/libseccomp/test-version.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +# shellcheck shell=busybox + +case "$PKG_NAME" in +libseccomp|\ +scmp_sys_resolver) + exit 0 + ;; + +*) + echo "Untested package: $PKG_NAME" >&2 + exit 1 + ;; +esac