]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/bmake/find_lib.sh
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / bmake / find_lib.sh
1 :
2 re=$1; shift
3
4 for lib in $*
5 do
6   found=`nm $lib | egrep "$re"`
7   case "$found" in
8   "") ;;
9   *)    echo "$lib: $found";;
10   esac
11 done
12
13