From 71c33085edc38b1b6fde74749f948abe1e573a35 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jul 2024 17:17:24 -0700 Subject: [PATCH] [release/9.0-preview7] Ensure linux uses zlib-ng and not system ZLIB (#105354) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update extra_libs.cmake * Apply alternate suggestion --------- Co-authored-by: Adeel Mujahid <3840695+am11@users.noreply.github.com> Co-authored-by: Carlos Sánchez López <1175054+carlossanlop@users.noreply.github.com> --- src/native/libs/System.IO.Compression.Native/extra_libs.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/native/libs/System.IO.Compression.Native/extra_libs.cmake b/src/native/libs/System.IO.Compression.Native/extra_libs.cmake index 589cf5a79ad78..03b40533e2109 100644 --- a/src/native/libs/System.IO.Compression.Native/extra_libs.cmake +++ b/src/native/libs/System.IO.Compression.Native/extra_libs.cmake @@ -16,7 +16,7 @@ macro(append_extra_compression_libs NativeLibsExtra) # 'zlib' represents our in-tree zlib, and is used in all other platforms # that don't meet any of the previous special requirements, like most # regular Unix and Windows builds. - list(APPEND ZLIB_LIBRARIES $,z,zlib>) + list(APPEND ZLIB_LIBRARIES $,z,zlib>) endif () list(APPEND ${NativeLibsExtra} ${ZLIB_LIBRARIES})