singularity: openssl cert configs path fixed.

openssl recipe moves ssl-1.1 directory as ssl , singularity recipe cannot find ssl-1.1 path.

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
This commit is contained in:
Cevat Bostancioglu 2019-06-28 01:27:24 +03:00 committed by Bruce Ashfield
parent ee9a745a73
commit a7da69d1fa

View File

@ -30,6 +30,6 @@ pkg_postinst_${PN}() {
# python3 expects CA certificates to be installed in a different place to where # python3 expects CA certificates to be installed in a different place to where
# they are actually installed. These lines link the two locations. # they are actually installed. These lines link the two locations.
rm -r $D${libdir}/ssl-1.1/certs rm -r $D${libdir}/ssl/certs
ln -sr $D${sysconfdir}/ssl/certs $D${libdir}/ssl-1.1 ln -sr $D${sysconfdir}/ssl/certs $D${libdir}/ssl
} }