]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/bmake/find_lib.sh
MFC bmake changes to stable/10 (r255285,r255916,r258113,r258114,r261212,r266760,r268437)
[FreeBSD/stable/10.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