Browse Source

""

pull/1255/head
Daniel Gibbs 8 years ago
parent
commit
27b88e3baf
  1. 4
      lgsm/functions/command_dev_detect_ldd.sh

4
lgsm/functions/command_dev_detect_ldd.sh

@ -22,8 +22,8 @@ elif [ -f "${filesdir}" ]; then
fi
echo ""
files=$(find ${filesdir} | wc -l)
find ${filesdir} -type f -print0 |
files=$(find "${filesdir}" | wc -l)
find "${filesdir}" -type f -print0 |
while IFS= read -r -d $'\0' line; do
#ldd -v $line 2>/dev/null|grep "=>" >>"${tmpdir}/detect_ldd.tmp"
if [ -n "$(ldd $line 2>/dev/null |grep -v "not a dynamic executable")" ]; then

Loading…
Cancel
Save