diff options
| author | Eneas U de Queiroz | 2024-05-27 16:51:53 +0000 |
|---|---|---|
| committer | Rosen Penev | 2024-05-28 03:17:56 +0000 |
| commit | 87f0efbded4270e3c3f13fb46e76532e11611f9b (patch) | |
| tree | 41c1cde2a103daada47158960e180c664ddf6f6d | |
| parent | 88ef251c44a867d4d8ffa62aaaa8e0c37d93c272 (diff) | |
| download | packages-87f0efbded4270e3c3f13fb46e76532e11611f9b.tar.gz | |
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 <cotequeiroz@gmail.com>
| -rw-r--r-- | libs/gost_engine/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
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 |