summaryrefslogtreecommitdiffstats
path: root/utils/coreutils/test-version.sh
blob: 0b211d999d2db42740c11bbac17ec876fab50a9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

if [ "$PKG_NAME" = 'coreutils' ]; then
	exit 0
fi

EXEC=${PKG_NAME#coreutils-}

case "$EXEC" in
echo|false|kill|printf|pwd|test|true)
	exit 0
	;;
*)
	"$EXEC" --version 2>&1 | grep -qF "$PKG_VERSION"
	;;
esac