01eb413282
The plan is to remove the out-of-date source from bootstrap/bmake. Sources obtained from ftp://ftp.NetBSD.org/pub/NetBSD/misc/sjg/. Source is kept in files/ for bootstrap purposes (to be done). Update to version bmake-20051002. Changes include: * Makefile.in (BMAKE_VERSION): bump to 20051001 support for UnixWare and some other systems, based on patches from pkgsrc/bootstrap Remove DEPENDS for mk-files (as mentioned on tech-pkg in June). Use libnbcompat. Also patch-aa is to use libnbcompat. (I chose to use patches so files would be exact from original source tarball.) And use PKGMANDIR.
13 lines
138 B
Bash
Executable file
13 lines
138 B
Bash
Executable file
:
|
|
re=$1; shift
|
|
|
|
for lib in $*
|
|
do
|
|
found=`nm $lib | egrep "$re"`
|
|
case "$found" in
|
|
"") ;;
|
|
*) echo "$lib: $found";;
|
|
esac
|
|
done
|
|
|
|
|