CA certificates are stored in /etc/ssl/certs ... this is used by LibreSSL and populated/updated by ca-certificates or make-ca. Tools like wget or curl use the certs in /etc/ssl/certs [via gnutls or libreSSL]. But meson, built by Python, uses OpenSSL... and fails to download subprojects via the meson wrap system.
OpenSSL is installed in /opt/openssl and expects certs in /etc/openssl/etc/ssl/certs.
To avoid double the work, just make /etc/openssl/etc/ssl/certs a symlink to /etc/ssl/certs.
CA certificates are stored in
/etc/ssl/certs
... this is used by LibreSSL and populated/updated byca-certificates
ormake-ca
. Tools like wget or curl use the certs in/etc/ssl/certs
[via gnutls or libreSSL]. But meson, built by Python, uses OpenSSL... and fails to download subprojects via the meson wrap system.OpenSSL is installed in
/opt/openssl
and expects certs in/etc/openssl/etc/ssl/certs
. To avoid double the work, just make/etc/openssl/etc/ssl/certs
a symlink to/etc/ssl/certs
.