From 3faf4e8079a46bd46e05cd1234365724a6a33802 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Mon, 24 Jun 2024 17:18:44 +0300 Subject: [PATCH] CI: Don't omit crc32 from the list with CMake anymore XZ_CHECKS accepts it but works without too. --- build-aux/ci_build.bash | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/build-aux/ci_build.bash b/build-aux/ci_build.bash index 2af2b74b..ddd6b13a 100755 --- a/build-aux/ci_build.bash +++ b/build-aux/ci_build.bash @@ -166,15 +166,7 @@ then CHECK_TYPE_TEMP="" for crc in $(echo "$CHECK_TYPE" | sed "s/,/ /g"); do case "$crc" in - # Remove "crc32" from cmake build, if specified. - crc32) - if [ "$BUILD_SYSTEM" = "cmake" ] - then - continue - fi - ;; - crc64) ;; - sha256) ;; + crc32 | crc64 | sha256) ;; *) echo "Invalid check type: $crc"; exit 1 ;; esac