From 91f6f7d0ac7e23fc6ccc0562e7f144ef2dbd3078 Mon Sep 17 00:00:00 2001 From: boypt <1033514+boypt@users.noreply.github.com> Date: Tue, 27 Feb 2024 10:22:36 +0800 Subject: [PATCH] fix: el8 dir not yet ready --- compile.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compile.sh b/compile.sh index 866f6f8..c9bd932 100755 --- a/compile.sh +++ b/compile.sh @@ -40,8 +40,8 @@ GUESS_DIST_BY_GLIBC() { # centos 7 uses glibc 2.17 [[ $glibcver -eq 217 ]] && echo 'el7' && return 0 - # centos 8 uses glibc 2.28 - [[ $glibcver -eq 228 ]] && echo 'el8' && return 0 + # centos 8 uses glibc 2.28, not yet to be in a seprate dir yet + #[[ $glibcver -eq 228 ]] && echo 'el8' && return 0 # some centos-like dists ships higher version of glibc, fallback to el7 [[ $glibcver -gt 217 ]] && echo 'el7' && return 0