blob: b976656e2bd72ed8f3c2a770b3535867b6aeddd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
case "$1" in
libupnpp)
ls /usr/lib/libupnpp.so.* >/dev/null 2>&1 || {
echo "FAIL: libupnpp shared library not found in /usr/lib"
exit 1
}
echo "libupnpp.so: OK"
;;
esac
|