From 30285870559be5d3f978f5e5fa43219c62b6108d Mon Sep 17 00:00:00 2001 From: Nabil Ghodbane Date: Tue, 7 May 2024 10:50:33 +0200 Subject: [PATCH] relax constraint about openssl for windows - Python embeds already ssl --- commands/compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/compile.py b/commands/compile.py index 12cfbe6..d084b2d 100644 --- a/commands/compile.py +++ b/commands/compile.py @@ -502,7 +502,7 @@ def compile_product_pip(sat, :rtype: int ''' # pip needs openssl-dev. If openssl is declared in the application, we check it! - if "openssl" in config.APPLICATION.products: + if "openssl" in config.APPLICATION.products and not src.architecture.is_windows(): openssl_cfg = src.product.get_product_config(config, "openssl") if not src.product.check_installation(config, openssl_cfg): raise src.SatException(_("please install system openssl development package, it is required for products managed by pip.")) -- 2.30.2