From b3b76c799f2619cabc4d57c388b5b794ea212311 Mon Sep 17 00:00:00 2001 From: Htylol Date: Tue, 19 Aug 2025 01:26:54 +0500 Subject: [PATCH] Use compare_versions for glibc --- 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 eac5ff8b..532ae23d 100755 --- a/data_from_portwine/scripts/functions_helper +++ b/data_from_portwine/scripts/functions_helper @@ -5625,7 +5625,7 @@ gui_edit_db () { [[ ! -e "/dev/ntsync" ]] && DISABLE_EDIT_DB_LIST+=" PW_USE_NTSYNC" if ! check_flatpak \ - && [[ $(ldd --version | head -n 1 | awk '{print $4}') < 2.38 ]] + && ! compare_versions "$(ldd --version | head -n 1 | awk '{print $4}')" "2.38" then DISABLE_EDIT_DB_LIST+=" PW_USE_LS_FRAME_GEN" export PW_USE_LS_FRAME_GEN="0"