From: Alexandru Ardelean Date: Sat, 18 Jul 2026 19:13:18 +0000 (+0300) Subject: libpam: add test-version.sh CI override X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=084acd635c55d66a38e8149486cad721c4e8d0b9;p=openwrt-packages.git libpam: add test-version.sh CI override libpam's helper binaries have no version flag, so the forced generic probe fails with "No executables provided version". Accept the version here; the library version is already covered by the SONAME checks. Signed-off-by: Alexandru Ardelean --- diff --git a/libs/libpam/test-version.sh b/libs/libpam/test-version.sh new file mode 100755 index 000000000..87f78d041 --- /dev/null +++ b/libs/libpam/test-version.sh @@ -0,0 +1,7 @@ +#!/bin/sh +# libpam's only versioned artefact is libpam.so (covered by the SONAME checks); +# its helper binaries have no version flag, so accept the version here. +case "$1" in +libpam) exit 0 ;; +esac +exit 1