Typo fix in support of gh2824.wif

This commit is contained in:
Ward Fisher 2023-12-12 10:04:18 -07:00
parent 05cd5565e8
commit ed90d50078
2 changed files with 4 additions and 3 deletions

View File

@ -1160,7 +1160,8 @@ set_std_filter(Szip)
SET(HAVE_SZ ${Szip_FOUND})
set_std_filter(Blosc)
IF(Zstd_FOUND)
set_std_filter(Zstd)
set_std_filter(Zstd)
SET(HAVE_ZSTD ON CACHE)
ENDIF()
IF(Bz2_FOUND)
set_std_filter(Bz2)
@ -1168,7 +1169,7 @@ ELSE()
# The reason we use a local version is to support a more comples test case
MESSAGE("libbz2 not found using built-in version")
SET(HAVE_LOCAL_BZ2 ON)
SET(HAVE_BZ2 ON)
SET(HAVE_BZ2 ON CACHE BOOL "")
set(STD_FILTERS "${STD_FILTERS} bz2")
ENDIF()

View File

@ -118,7 +118,7 @@ fi
has_multifilters="yes"
has_zstd="@HAS_ZSTD@"
has_zstd="@HAVE_ZSTD@"
if [ -z "$has_zstd" -o "$has_zstd" = "OFF" -o "$has_zstd" = "FALSE" ]; then
has_zstd="no"
else