Browse Source

Added objdump check

pull/1128/head
Daniel Gibbs 9 years ago
parent
commit
8fb5725671
  1. 8
      lgsm/functions/command_dev_detect_glibc.sh

8
lgsm/functions/command_dev_detect_glibc.sh

@ -9,6 +9,12 @@ echo "================================="
echo "GLIBC Requirements Checker"
echo "================================="
if [ -z "$(command -v objdump)" ]; then
fn_print_failure_nl "objdump is missing"
fn_script_log_fatal "objdump is missing"
core_exit.sh
fi
if [ -z "${filesdir}" ]; then
dir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))"
fi
@ -31,4 +37,4 @@ while IFS= read -r -d $'\0' line; do
done
echo ""
cat "${tmpdir}/detect_glibc.tmp"|sort|uniq|sort -r --version-sort
rm "${tmpdir}/detect_glibc.tmp"
#rm "${tmpdir}/detect_glibc.tmp"
Loading…
Cancel
Save