mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
openssl: fix variable reference in conffiles
Fix the trivial abscence of $() when assigning engine config files to the main libopenssl-config package even if the corresponding engines were not built into the main library. This is mostly cosmetic, since scripts/ipkg-build tests the file's presence before it is actually included in the package's conffiles. Fixes: 30b0351039 "openssl: configure engine packages during install" Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
This commit is contained in:
parent
99a4abd0ff
commit
4155fca311
@ -130,8 +130,8 @@ endef
|
|||||||
|
|
||||||
define Package/libopenssl-conf/conffiles
|
define Package/libopenssl-conf/conffiles
|
||||||
/etc/ssl/openssl.cnf
|
/etc/ssl/openssl.cnf
|
||||||
$(if CONFIG_OPENSSL_ENGINE_BUILTIN_DEVCRYPTO,/etc/ssl/engines.cnf.d/devcrypto.cnf)
|
$(if $(CONFIG_OPENSSL_ENGINE_BUILTIN_DEVCRYPTO),/etc/ssl/engines.cnf.d/devcrypto.cnf)
|
||||||
$(if CONFIG_OPENSSL_ENGINE_BUILTIN_PADLOCK,/etc/ssl/engines.cnf.d/padlock.cnf)
|
$(if $(CONFIG_OPENSSL_ENGINE_BUILTIN_PADLOCK),/etc/ssl/engines.cnf.d/padlock.cnf)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libopenssl-conf/description
|
define Package/libopenssl-conf/description
|
||||||
|
Loading…
Reference in New Issue
Block a user