From ca7836bf717c34f97719ba8aa3c3f6b07f0a591d Mon Sep 17 00:00:00 2001 From: DL6ER Date: Sat, 21 Oct 2023 19:05:45 +0200 Subject: [PATCH] Remove now obsolete GLIBC version check Signed-off-by: DL6ER --- automated install/basic-install.sh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh index b9ed04a4..443ee85e 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -1860,15 +1860,6 @@ get_binary_name() { local machine machine=$(uname -m) - # Get local GLIBC version (leave at "0.0" if no GLIBC, e.g., on musl) - local l_glibc_version="0.0" - if ldd --version 2>&1 | grep -q "GLIBC"; then - l_glibc_version=$(ldd --version | head -n1 | grep -o '[0-9.]*$') - printf "%b %b Detected GLIBC version %s\\n" "${OVER}" "${TICK}" "${l_glibc_version}" - else - printf "%b %b No GLIBC detected\\n" "${OVER}" "${CROSS}" - fi - local l_binary local str="Detecting processor"