mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
024b8ee60e
perlbase-archive, perlbase-pod, and perlbase-test install Perl script wrappers (ptar, pod2man, prove, etc.) that do not output the OpenWrt package version string (5.40.0), causing generic version check failures in CI. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
6 lines
156 B
Bash
Executable File
6 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
# Perl script wrappers do not output the OpenWrt package version string
|
|
case "$1" in
|
|
perlbase-archive|perlbase-pod|perlbase-test) exit 0 ;;
|
|
esac
|