[Update] Better GLIBC check

master
andryyy 2021-01-22 07:31:09 +01:00
parent 5b4d2e5c65
commit 78403095bb
No known key found for this signature in database
GPG Key ID: 8EC34FF2794E25EF
1 changed files with 2 additions and 2 deletions

View File

@ -514,8 +514,8 @@ else
echo -e "\e[32mFetching new docker-compose version...\e[0m" echo -e "\e[32mFetching new docker-compose version...\e[0m"
echo -e "\e[32mTrying to determine GLIBC version...\e[0m" echo -e "\e[32mTrying to determine GLIBC version...\e[0m"
if ldd --version > /dev/null; then if ldd --version > /dev/null; then
GLIBC_V=$(ldd --version | grep GLIBC | rev | cut -d ' ' -f1 | rev | cut -d '.' -f2) GLIBC_V=$(ldd --version | grep -E '(GLIBC|GNU libc)' | rev | cut -d ' ' -f1 | rev | cut -d '.' -f2)
if [ ${GLIBC_V} -gt 27 ]; then if [ ! -z "${GLIBC_V}" ] && [ ${GLIBC_V} -gt 27 ]; then
DC_DL_SUFFIX= DC_DL_SUFFIX=
else else
DC_DL_SUFFIX=legacy DC_DL_SUFFIX=legacy