lib/replace: define HAVE_WORKING_STRPTIME instead of REPLACE_STRPTIME
[Samba/gebeck_regimport.git] / source4 / scripting / devel / nmfind
blob54935f213d333fc7de458a5d8b53543144fec68e
1 #!/bin/sh
3 # find object files containing a symbol
4 # for example:
5 # nmfind foo_function $(find bin/default -name '*.o')
7 TARGET=$1
8 shift
9 for f in $*; do
10 if nm $f 2>&1 | grep $TARGET > /dev/null; then
11 echo [$f]
12 nm $f | grep $TARGET
13 echo
15 done