···2525 linkCount=0
2626 # Iterate over any DLL that we depend on.
2727 local dll
2828- for dll in $(objdump -p *.{exe,dll} | sed -n 's/.*DLL Name: \(.*\)/\1/p' | sort -u); do
2828+ for dll in $($OBJDUMP -p *.{exe,dll} | sed -n 's/.*DLL Name: \(.*\)/\1/p' | sort -u); do
2929 if [ -e "./$dll" ]; then continue; fi
3030 # Locate the DLL - it should be an *executable* file on $DLLPATH.
3131 local dllPath="$(PATH="$DLLPATH" type -P "$dll")"