From 8fb572567169bfd77bed1ad0af5072e46a692c89 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 15 Oct 2016 14:06:17 +0100 Subject: [PATCH] Added objdump check --- lgsm/functions/command_dev_detect_glibc.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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