2
0
mirror of https://github.com/Unidata/netcdf-c.git synced 2025-03-19 17:30:27 +08:00

Correct an issue where a variable was being treated as a list instead of a string.

This commit is contained in:
Ward Fisher 2024-06-28 10:54:30 -06:00
parent c3ca3d3001
commit 616b6416c7

@ -396,7 +396,6 @@ set(HAVE_SZ ${Szip_FOUND})
set(USE_SZIP ${HAVE_SZ})
set_std_filter(Blosc)
if(Zstd_FOUND)
#set(STD_FILTERS "${STD_FILTERS} zstd")
set_std_filter(Zstd)
endif()
if(Bz2_FOUND)
@ -408,7 +407,8 @@ else()
set(HAVE_BZ2 ON CACHE BOOL "")
set(STD_FILTERS "${STD_FILTERS} bz2")
endif()
set(STD_FILTERS ${STD_FILTERS} ${FOUND_STD_FILTERS})
set(STD_FILTERS "${STD_FILTERS}${FOUND_STD_FILTERS}")
IF (NETCDF_ENABLE_NCZARR_ZIP)
find_package(Zip)
if(Zip_FOUND)