From 04846aa8da4cb169d414d09f0220ce4d6aecbcae Mon Sep 17 00:00:00 2001 From: henricryden Date: Tue, 10 Sep 2024 14:50:30 +0200 Subject: [PATCH] additional search path for libc.so.6 in check-requirements-linux.sh (#227713) extra path for libc.so.6 in check-requirements-linux.sh --- resources/server/bin/helpers/check-requirements-linux.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/server/bin/helpers/check-requirements-linux.sh b/resources/server/bin/helpers/check-requirements-linux.sh index 31a618fbd85..8ef07a2fb1f 100644 --- a/resources/server/bin/helpers/check-requirements-linux.sh +++ b/resources/server/bin/helpers/check-requirements-linux.sh @@ -125,6 +125,9 @@ elif [ -z "$(ldd --version 2>&1 | grep 'musl libc')" ]; then elif [ -f /usr/lib/libc.so.6 ]; then # Typical path libc_path='/usr/lib/libc.so.6' + elif [ -f /lib64/libc.so.6 ]; then + # Typical path (OpenSUSE) + libc_path='/lib64/libc.so.6' elif [ -f /usr/lib64/libc.so.6 ]; then # Typical path libc_path='/usr/lib64/libc.so.6'