mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
libcap-ng: fix version check override
Fixes: 12b01bad ("libcap-ng-bin: add test-version.sh to skip version check")
Signed-off-by: George Sapkin <george@sapk.in>
This commit is contained in:
@@ -1,5 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
# shellckeck shell=busybox
|
||||
|
||||
case "$1" in
|
||||
captest|filecap|netcap|pscap) exit 0 ;;
|
||||
*) echo "Untested package: $1" >&2; exit 1 ;;
|
||||
libcap-ng|\
|
||||
libcap-ng-bin)
|
||||
exit 0
|
||||
;;
|
||||
*)
|
||||
echo "Untested package: $1" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
Reference in New Issue
Block a user