Message ID | 20240621161049.4085310-2-dario.binacchi@amarulasolutions.com |
---|---|
State | New |
Headers | show |
Series |
|
Related | show |
>>>>> "Dario" == Dario Binacchi <dario.binacchi@amarulasolutions.com> writes: > The bump to version 3.0.9 and all subsequent updates forgot to change > the directory name, which remained that of version 1.1. The patch > fixes the directory name to be consistent with the version. > In the case the library was not built with engine support, this resulted > in the presence of files in the root file system that should have been > removed. > Fixes: 3c66f65a6a54 ("package/libopenssl: bump version to 3.0.9") > Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> Committed to 2024.02.x and 2024.05.x, thanks.
diff --git a/package/libopenssl/libopenssl.mk b/package/libopenssl/libopenssl.mk index 88debf114a3b..14313a80fe74 100644 --- a/package/libopenssl/libopenssl.mk +++ b/package/libopenssl/libopenssl.mk @@ -166,7 +166,7 @@ endif ifneq ($(BR2_PACKAGE_LIBOPENSSL_ENGINES),y) define LIBOPENSSL_REMOVE_LIBOPENSSL_ENGINES - $(RM) -rf $(TARGET_DIR)/usr/lib/engines-1.1 + $(RM) -rf $(TARGET_DIR)/usr/lib/engines-3 endef LIBOPENSSL_POST_INSTALL_TARGET_HOOKS += LIBOPENSSL_REMOVE_LIBOPENSSL_ENGINES endif
The bump to version 3.0.9 and all subsequent updates forgot to change the directory name, which remained that of version 1.1. The patch fixes the directory name to be consistent with the version. In the case the library was not built with engine support, this resulted in the presence of files in the root file system that should have been removed. Fixes: 3c66f65a6a54 ("package/libopenssl: bump version to 3.0.9") Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> --- package/libopenssl/libopenssl.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)