]> git.99rst.org Git - openwrt-packages.git/commitdiff
libpam: add test-version.sh CI override
authorAlexandru Ardelean <redacted>
Sat, 18 Jul 2026 19:13:18 +0000 (22:13 +0300)
committerAlexandru Ardelean <redacted>
Sat, 18 Jul 2026 19:49:20 +0000 (22:49 +0300)
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 <redacted>
libs/libpam/test-version.sh [new file with mode: 0755]

diff --git a/libs/libpam/test-version.sh b/libs/libpam/test-version.sh
new file mode 100755 (executable)
index 0000000..87f78d0
--- /dev/null
@@ -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
git clone https://git.99rst.org/PROJECT