From 29791d2e9c87fd5d0e29fe8e36cb27857912e451 Mon Sep 17 00:00:00 2001 From: Patrick Wuttke Date: Sat, 17 Aug 2024 18:11:13 +0200 Subject: [PATCH] Fixed zlib recipe on linux. --- recipes/zlib/recipe.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/recipes/zlib/recipe.py b/recipes/zlib/recipe.py index 1a849c1..d764b99 100644 --- a/recipes/zlib/recipe.py +++ b/recipes/zlib/recipe.py @@ -9,9 +9,7 @@ _TAG_PATTERN = re.compile(r'^v([0-9]+)\.([0-9]+)(?:\.([0-9]+))?$') def _build_lib_name(env: Environment) -> str: if os.name == 'posix': - return { - 'debug': 'zd' - }.get(env['BUILD_TYPE'], 'z') + return 'z' elif os.name == 'nt': return { 'debug': 'zlibstaticd'