From 0a2112b432fb61d24ae837ab5f35084a3cf4303b Mon Sep 17 00:00:00 2001 From: Guillaume Egles Date: Thu, 6 Jul 2023 10:24:13 -0700 Subject: [PATCH] openssl: use "res" folder for ssldirs config files --- recipes/openssl/3.x.x/conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/openssl/3.x.x/conanfile.py b/recipes/openssl/3.x.x/conanfile.py index fa8146c0d0a3e..3f1db11e48dbe 100644 --- a/recipes/openssl/3.x.x/conanfile.py +++ b/recipes/openssl/3.x.x/conanfile.py @@ -483,7 +483,7 @@ def _run_make(self, targets=None, parallel=True, install=False): command = [self._make_program] if install: command.append(f"DESTDIR={self.package_folder}") - command.append(f"OPENSSLDIR=/etc/ssl") + command.append(f"OPENSSLDIR=/res/ssl") if targets: command.extend(targets) if not self._use_nmake: