From 5f5c47fe101ac8228057cfe3782053c3b6aa12d1 Mon Sep 17 00:00:00 2001 From: zorn-v Date: Tue, 16 Sep 2025 11:57:41 +1000 Subject: [PATCH] Correct 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 806ca47d..16bd1699 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 $5}')" "2.38" + && ! compare_versions "$(ldd --version | head -n 1 | awk '{print $NF}')" "2.38" then DISABLE_EDIT_DB_LIST+=" PW_USE_LS_FRAME_GEN" export PW_USE_LS_FRAME_GEN="0"