From e52623c8dc0108be8dec666ece7a4eb759649561 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Wed, 27 Aug 2025 12:34:45 -0400 Subject: [PATCH] fix(install-cmake-binary): Revert back to installing upstream CMake package Since the Centos 5 image is not maintained anymore, there is no need to install the custom CMake package originally intended to support GLIBC version from Centos 5. --- imagefiles/install-cmake-binary.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imagefiles/install-cmake-binary.sh b/imagefiles/install-cmake-binary.sh index 2109ea9..61fed0b 100755 --- a/imagefiles/install-cmake-binary.sh +++ b/imagefiles/install-cmake-binary.sh @@ -36,8 +36,8 @@ fi cd /usr/src -CMAKE_ROOT=cmake-${CMAKE_VERSION}-Centos5-${ARCH} -CMAKE_DOWNLOAD_URL=https://github.com/dockbuild/CMake/releases/download/v${CMAKE_VERSION} +CMAKE_ROOT=cmake-${CMAKE_VERSION}-linux-${ARCH} +CMAKE_DOWNLOAD_URL=https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION} echo "Downloading ${CMAKE_DOWNLOAD_URL}/${CMAKE_ROOT}.tar.gz"