From 015d5388a0dca953171ea0771960230b9a68c436 Mon Sep 17 00:00:00 2001 From: Christy Lee Date: Thu, 20 Feb 2025 13:39:04 -0800 Subject: [PATCH] Allow installing dependencies on centos --- install-build-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-build-deps.sh b/install-build-deps.sh index cf746b9022..119c22a6b2 100755 --- a/install-build-deps.sh +++ b/install-build-deps.sh @@ -13,7 +13,7 @@ ubuntu | pop | linuxmint | debian | raspbian | neon) apt-get install -y cmake gcc g++ if [ "$ID-$VERSION_ID" = ubuntu-20.04 ]; then apt-get install -y g++-10; fi ;; -fedora | amzn | rhel) +fedora | amzn | rhel | centos) dnf install -y gcc-g++ cmake glibc-static libstdc++-static diffutils util-linux tar ;; rocky)