summaryrefslogtreecommitdiff
path: root/bootstrap/bmake/find_lib.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/bmake/find_lib.sh')
-rwxr-xr-xbootstrap/bmake/find_lib.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/bootstrap/bmake/find_lib.sh b/bootstrap/bmake/find_lib.sh
deleted file mode 100755
index 3c2e4af2f25..00000000000
--- a/bootstrap/bmake/find_lib.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-:
-re=$1; shift
-
-for lib in $*
-do
- found=`nm $lib | egrep "$re"`
- case "$found" in
- "") ;;
- *) echo "$lib: $found";;
- esac
-done
-
-