From f59bd5c0d16ba9fd0ddeb6c4ce70bd3341336e2a Mon Sep 17 00:00:00 2001 From: zorn-v Date: Tue, 16 Sep 2025 11:50:31 +1000 Subject: [PATCH] Fix GLIBC version check --- data_from_portwine/scripts/functions_helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_from_portwine/scripts/functions_helper b/data_from_portwine/scripts/functions_helper index d9e9b209..806ca47d 100755 --- a/data_from_portwine/scripts/functions_helper +++ b/data_from_portwine/scripts/functions_helper @@ -5673,7 +5673,7 @@ gui_edit_db () { [[ ! -e "/dev/ntsync" ]] && DISABLE_EDIT_DB_LIST+=" PW_USE_NTSYNC" if ! check_flatpak \ - && ! compare_versions "$(ldd --version | head -n 1 | awk '{print $4}')" "2.38" + && ! compare_versions "$(ldd --version | head -n 1 | awk '{print $5}')" "2.38" then DISABLE_EDIT_DB_LIST+=" PW_USE_LS_FRAME_GEN" export PW_USE_LS_FRAME_GEN="0"