diff --git a/lgsm/functions/command_dev_detect_glibc.sh b/lgsm/functions/command_dev_detect_glibc.sh index 7c247f888..ce27d4875 100644 --- a/lgsm/functions/command_dev_detect_glibc.sh +++ b/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" \ No newline at end of file +#rm "${tmpdir}/detect_glibc.tmp" \ No newline at end of file