Comment 8 for bug 2003668

Revision history for this message
bugproxy (bugproxy) wrote : Comment bridged from LTC Bugzilla

------- Comment From <email address hidden> 2023-09-18 10:52 EDT-------
I agree, the openssl-pkcs11-sign-provider is not architecture specific. Please change to "Architecture: any".

The configure: target in debian/rules should also set the libdir to the "modulesdir" variable of libcrypto, because openssl is expecting the provider so-file there. pkg-config is providing this information, so get it from there.

debian/rules --------------
...
configure:
dh_auto_configure -- --libdir $(pkg-config --variable modulesdir libcrypto)
...
---------------------------