From: Eneas U de Queiroz Date: Mon, 27 May 2024 16:51:53 +0000 (-0300) Subject: gost_engine: fix config installation directory X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=87f0efbded4270e3c3f13fb46e76532e11611f9b;p=feed%2Fpackages.git gost_engine: fix config installation directory The engine configuration directory was moved to /etc/ssl/modules.cnf.d/, but the gost_engine package was using /etc/ssl/engines.cnf.d/ by mistake. Fixes: 3b2fcd6b2 ("gost_engine: adapt to new engine build config") Signed-off-by: Eneas U de Queiroz --- diff --git a/libs/gost_engine/Makefile b/libs/gost_engine/Makefile index 308b7e45b4..e6a8066722 100644 --- a/libs/gost_engine/Makefile +++ b/libs/gost_engine/Makefile @@ -3,7 +3,7 @@ include $(INCLUDE_DIR)/openssl-module.mk PKG_NAME:=gost_engine PKG_VERSION:=3.0.3 -PKG_RELEASE:=10 +PKG_RELEASE:=11 PKG_SOURCE_PROTO:=git PKG_SOURCE_VERSION:=v$(PKG_VERSION) @@ -60,12 +60,12 @@ endef CMAKE_OPTIONS += -DOPENSSL_ENGINES_DIR=/usr/lib/$(ENGINES_DIR) define Package/libopenssl-gost_engine/install - $(INSTALL_DIR) $(1)/usr/lib $(1)/usr/lib/$(ENGINES_DIR) $(1)/etc/ssl/engines.cnf.d + $(INSTALL_DIR) $(1)/usr/lib $(1)/usr/lib/$(ENGINES_DIR) $(1)/etc/ssl/modules.cnf.d $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libgost.so \ $(1)/usr/lib/ $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/$(ENGINES_DIR)/gost.so \ $(1)/usr/lib/$(ENGINES_DIR)/ - $(INSTALL_DATA) ./files/gost.cnf $(1)/etc/ssl/engines.cnf.d/ + $(INSTALL_DATA) ./files/gost.cnf $(1)/etc/ssl/modules.cnf.d/ endef define Package/gost_engine-util/install