Preparing for 4.11.1 final
[platform/upstream/rpm.git] / autodeps / openbsd.prov
1 #!/bin/sh
2 # ----------------------------------------------------------
3 #       find-provides for OpenBSD-2.5
4 # ----------------------------------------------------------
5 filelist=$(grep "\\.so" | grep -v "^/lib/ld.so" | xargs file -L 2>/dev/null | grep "OpenBSD.*shared" | cut -d: -f1)
6
7 for f in $filelist; do
8         echo ${f##*/}
9 done | sort -u