From 20ac0981176a264d57668d35c1f2ddcf7729a46b Mon Sep 17 00:00:00 2001 From: Alessandro Bono Date: Tue, 28 Nov 2023 11:38:59 +0100 Subject: [PATCH] openssl: Don't generate documentation Use the newly introduced option[1] no-docs to not generate what we don't need. [1] https://github.com/openssl/openssl/commit/956b4c75dc3f8710bf7b4e1cf01b4ef6d5ca2b45 --- gvsbuild/projects/openssl.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gvsbuild/projects/openssl.py b/gvsbuild/projects/openssl.py index c2e4ce5d5..932ff6095 100644 --- a/gvsbuild/projects/openssl.py +++ b/gvsbuild/projects/openssl.py @@ -36,9 +36,7 @@ def __init__(self): ) def build(self): - common_options = ( - r"no-ssl3 no-comp --openssldir=%(gtk_dir)s/etc/ssl --prefix=%(gtk_dir)s" - ) + common_options = r"no-comp no-docs no-ssl3 --openssldir=%(gtk_dir)s/etc/ssl --prefix=%(gtk_dir)s" debug_option = "debug-" if self.builder.opts.configuration == "debug" else "" # Note that we want to give priority to the system perl version.